From f8fe7fa4913d34f33fac12181a0fc722ef367238 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 9 Aug 2002 07:32:24 +0000 Subject: [PATCH] Parse version numbers prefixed with text (egcs does that, even with -dumpversion). PR: 203, part 1 --- config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config b/config index 972cdb70a3..3e9af7680a 100755 --- a/config +++ b/config @@ -393,6 +393,9 @@ exit 0 GCCVER=`(gcc -dumpversion) 2>/dev/null` if [ "$GCCVER" != "" ]; then CC=gcc + # then strip off whatever prefix egcs prepends the number with... + # Hopefully, this will work for any future prefixes as well. + GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z]*\-//'` # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion # does give us what we want though, so we use that. We just just the # major and minor version numbers. -- 2.34.1