From 767f68cc806d44d5180d15e2c28924c834116b7f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Wed, 19 May 1999 16:35:21 +0000 Subject: [PATCH] Bugfix: GCCVAR contains two lines ("Reading specs ..." and the actual version), so we need echo $GCCVAR | sed ... instead of echo "$GCCVAR" | sed ... to process it as intended. --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index fe8108d439..56aad1d70b 100755 --- a/config +++ b/config @@ -333,7 +333,7 @@ esac # gcc < 2.8 does not support -mcpu=ultrasparc if [ "$OUT" = solaris-usparc-gcc ] then - if [ `echo "$GCCVER" | sed 's/.*version //;s/\.//;s/\..*//'` -lt 28 ] + if [ `echo $GCCVER | sed 's/.*version //;s/\.//;s/\..*//'` -lt 28 ] then OUT=solaris-usparc-oldgcc fi -- 2.34.1