configure.in (gcc_cv_as_leb128): Escape ".".
* configure.in (gcc_cv_as_leb128): Escape ".". * configure: Rebuilt. From-SVN: r41095
This commit is contained in:
parent
3cc48399b8
commit
3d399d67c4
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): Escape "." in regexp.
|
||||
* configure: Rebuilt.
|
||||
|
||||
2001-04-04 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* gcse.c (delete_null_pointer_checks_1): Add delete_list argument,
|
||||
|
|
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/[^.]*.\([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
|
||||
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/[^.]*.\([0-9]*\).*/\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