Commit 3d399d67 by Richard Henderson Committed by Richard Henderson

configure.in (gcc_cv_as_leb128): Escape ".".

        * configure.in (gcc_cv_as_leb128): Escape ".".
        * configure: Rebuilt.

From-SVN: r41095
parent 3cc48399
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,
......
......@@ -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"
......
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