summaryrefslogtreecommitdiff
path: root/gcc/configure.in
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-04 16:48:58 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-04 16:48:58 +0000
commitab501f6ebf6a22074d1012d993c86cc8f75db7d6 (patch)
tree7183f30a5943e5a055516922d67170de538a2be2 /gcc/configure.in
parent49780976b7f4f735eb65d750bf62ac9e803cd49a (diff)
downloadgcc-ab501f6ebf6a22074d1012d993c86cc8f75db7d6.tar.gz
* configure.in (gcc_cv_as_leb128): Tweek minor number extraction.
* configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41087 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure.in')
-rw-r--r--gcc/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure.in b/gcc/configure.in
index fbde2e6e556..948bfc2acd3 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -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"