OSDN Git Service

* configure.in: Correct previous change: don't assume that
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Oct 2001 16:47:25 +0000 (16:47 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 30 Oct 2001 16:47:25 +0000 (16:47 +0000)
gas's version number _isn't_ the last thing on the line, or
isn't the only number on the line, either.
* configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46643 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/configure
gcc/configure.in

index 195d90a..12a84cd 100644 (file)
@@ -1,3 +1,10 @@
+2001-10-30  Zack Weinberg  <zack@codesourcery.com>
+
+       * configure.in: Correct previous change: don't assume that
+       gas's version number _isn't_ the last thing on the line, or
+       isn't the only number on the line, either.
+       * configure: Regenerate.
+
 2001-10-30  Kazu Hirata  <kazu@hxi.com>
 
        * cfgcleanup.c: Fix a comment typo.
index 9ddc44f..5c2141d 100755 (executable)
@@ -7207,7 +7207,7 @@ EOF
                # arbitrary sections are supported and try the test.
                as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
                if echo "$as_ver" | grep GNU > /dev/null; then
-                       as_ver=`echo $as_ver | sed -e 's/.* \([0-9.][0-9.]*\) .*/\1/'`
+                       as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
                        as_major=`echo $as_ver | sed 's/\..*//'`
                        as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
                        if test $as_major -eq 2 -a $as_minor -lt 11; then
index 2e32cf1..96518c3 100644 (file)
@@ -1383,7 +1383,7 @@ EOF
                as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
                if echo "$as_ver" | grep GNU > /dev/null; then
 changequote(,)dnl
-                       as_ver=`echo $as_ver | sed -e 's/.* \([0-9.][0-9.]*\) .*/\1/'`
+                       as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
                        as_major=`echo $as_ver | sed 's/\..*//'`
                        as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
 changequote([,])dnl