diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-19 18:35:21 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-19 18:35:21 +0200 |
commit | 767f68cc806d44d5180d15e2c28924c834116b7f (patch) | |
tree | 1de16d81c8839114ac1a570443fecc5fec125db8 /config | |
parent | New functions sk_set, sk_value and sk_num to replace existing macros: this is (diff) | |
download | openssl-767f68cc806d44d5180d15e2c28924c834116b7f.tar.xz openssl-767f68cc806d44d5180d15e2c28924c834116b7f.zip |
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-x | config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |