From: wolf Date: Mon, 13 Dec 1999 07:24:34 +0000 (+0000) Subject: Fix typo. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d89ef57f5f5716306f7e99c513c56ec88f8a215;p=dealii-svn.git Fix typo. git-svn-id: https://svn.dealii.org/trunk@2045 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure b/deal.II/configure index 87f0afda19..3a278beac4 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -670,7 +670,7 @@ fi if test $GXX = yes ; then # find out the right version GXX_VERSION_STRING=`($CXX -v 2>&1) | grep "gcc version"` - if test -n `echo $GCC_VERSION_STRING | grep egcs-1.1` ; then + if test -n `echo $GXX_VERSION_STRING | grep egcs-1.1` ; then echo "$ac_t""Found egcs-1.1" 1>&6 GXX_VERSION=egcs1.1 else diff --git a/deal.II/configure.in b/deal.II/configure.in index 9187f3b454..c0afc6852f 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -25,7 +25,7 @@ AC_PROG_CXX if test $GXX = yes ; then # find out the right version GXX_VERSION_STRING=`($CXX -v 2>&1) | grep "gcc version"` - if test -n `echo $GCC_VERSION_STRING | grep egcs-1.1` ; then + if test -n `echo $GXX_VERSION_STRING | grep egcs-1.1` ; then AC_MSG_RESULT(Found egcs-1.1) GXX_VERSION=egcs1.1 else