diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-04 16:48:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-04 16:48:58 +0000 |
commit | ab501f6ebf6a22074d1012d993c86cc8f75db7d6 (patch) | |
tree | 7183f30a5943e5a055516922d67170de538a2be2 /gcc/configure | |
parent | 49780976b7f4f735eb65d750bf62ac9e803cd49a (diff) | |
download | gcc-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')
-rwxr-xr-x | gcc/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure b/gcc/configure index d89c0e3c529..7cdbe798005 100755 --- a/gcc/configure +++ b/gcc/configure @@ -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 |