configure.in (gcc_cv_as_leb128): Tweek minor number extraction.
* configure.in (gcc_cv_as_leb128): Tweek minor number extraction. * configure: Rebuilt. From-SVN: r41087
This commit is contained in:
parent
c3fa1afd75
commit
dd7fc59c36
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-04-04 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* configure.in (gcc_cv_as_leb128): Tweek minor number extraction.
|
||||
* configure: Rebuilt.
|
||||
|
||||
2001-04-04 Zack Weinberg <zackw@stanford.edu>
|
||||
|
||||
* expr.h: Remove #ifdef FUNCTION_CONVERSION_BUG logic.
|
||||
|
|
2
gcc/configure
vendored
2
gcc/configure
vendored
|
@ -6554,7 +6554,7 @@ EOF
|
|||
if echo "$as_ver" | grep GNU > /dev/null; then
|
||||
as_ver=`echo $as_ver | sed -e 's/.* //'`
|
||||
as_major=`echo $as_ver | sed 's/\..*//'`
|
||||
as_minor=`echo $as_ver | sed 's/[^.]*.\([^.]*\).*/\1/'`
|
||||
as_minor=`echo $as_ver | sed 's/[^.]*.\([0-9]*\).*/\1/'`
|
||||
if test $as_major -eq 2 -a $as_minor -lt 11; then
|
||||
gcc_cv_as_leb128="no"
|
||||
fi
|
||||
|
|
|
@ -1337,7 +1337,7 @@ EOF
|
|||
as_ver=`echo $as_ver | sed -e 's/.* //'`
|
||||
as_major=`echo $as_ver | sed 's/\..*//'`
|
||||
changequote(,)dnl
|
||||
as_minor=`echo $as_ver | sed 's/[^.]*.\([^.]*\).*/\1/'`
|
||||
as_minor=`echo $as_ver | sed 's/[^.]*.\([0-9]*\).*/\1/'`
|
||||
changequote([,])dnl
|
||||
if test $as_major -eq 2 -a $as_minor -lt 11; then
|
||||
gcc_cv_as_leb128="no"
|
||||
|
|
Loading…
Add table
Reference in a new issue