diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-19 18:50:16 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-19 18:50:16 +0200 |
commit | 15a99e3d9d35271027dd0e25be450d4043e01a97 (patch) | |
tree | 072530ddfa43e2908d48ad30b1b8201a32cab2cd /config | |
parent | Bugfix: GCCVAR contains two lines ("Reading specs ..." and the actual (diff) | |
download | openssl-15a99e3d9d35271027dd0e25be450d4043e01a97.tar.xz openssl-15a99e3d9d35271027dd0e25be450d4043e01a97.zip |
Convert gcc version detection (for solaris-usparc-gcc) into a form
better suited for finding what went wrong in case that some compiler
versions create an output we can't parse.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -333,7 +333,10 @@ 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 ] + GCCVERMAJOR="`echo $GCCVER | sed 's/.*version \([^.]*\).*/\1/`" + GCCVERMINOR="`echo $GCCVER | sed 's/.*version[^.]*\.\([^.]*\).*/\1/`" + echo "gcc version $GCCVERMAJOR.$GCCVERMINOR.x" + if [ $GCCVERMAJOR$GCCVERMINOR -lt 28 ] then OUT=solaris-usparc-oldgcc fi |