Commit 5fed851d by Zack Weinberg Committed by Zack Weinberg

configure.in: Correct previous change...

	* 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.

From-SVN: r46643
parent cfaef116
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> 2001-10-30 Kazu Hirata <kazu@hxi.com>
* cfgcleanup.c: Fix a comment typo. * cfgcleanup.c: Fix a comment typo.
......
...@@ -7207,7 +7207,7 @@ EOF ...@@ -7207,7 +7207,7 @@ EOF
# arbitrary sections are supported and try the test. # arbitrary sections are supported and try the test.
as_ver=`$gcc_cv_as --version 2>/dev/null | head -1` as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
if echo "$as_ver" | grep GNU > /dev/null; then 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_major=`echo $as_ver | sed 's/\..*//'`
as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'` as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
if test $as_major -eq 2 -a $as_minor -lt 11; then if test $as_major -eq 2 -a $as_minor -lt 11; then
......
...@@ -1383,7 +1383,7 @@ EOF ...@@ -1383,7 +1383,7 @@ EOF
as_ver=`$gcc_cv_as --version 2>/dev/null | head -1` as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
if echo "$as_ver" | grep GNU > /dev/null; then if echo "$as_ver" | grep GNU > /dev/null; then
changequote(,)dnl 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_major=`echo $as_ver | sed 's/\..*//'`
as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'` as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
changequote([,])dnl changequote([,])dnl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment