summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-19 16:35:21 +0000
committerBodo Möller <bodo@openssl.org>1999-05-19 16:35:21 +0000
commit767f68cc806d44d5180d15e2c28924c834116b7f (patch)
tree1de16d81c8839114ac1a570443fecc5fec125db8 /config
parente84240d42289a131def633579cfdabfb6ebf557d (diff)
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.
Diffstat (limited to 'config')
-rwxr-xr-xconfig2
1 files changed, 1 insertions, 1 deletions
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