diff options
author | Richard Levitte <levitte@openssl.org> | 2002-08-16 11:41:14 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-08-16 11:41:14 +0200 |
commit | cc8aa08b02818bc7aab531dc55d65ff85dc74fd4 (patch) | |
tree | f74f9fd818831d2913223439ad73606188a43ef1 /config | |
parent | Add -lz to the ld flags when the user has chosen to link in zlib *statically*. (diff) | |
download | openssl-cc8aa08b02818bc7aab531dc55d65ff85dc74fd4.tar.xz openssl-cc8aa08b02818bc7aab531dc55d65ff85dc74fd4.zip |
isalist was less trustable than I thought (or rather, one can trust it to
come up with all kinds of names we don't have in our targets).
Besides, our sparcv9 targets currently generate sparcv8 code, I'm told.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -595,10 +595,8 @@ EOF fi ;; *-*-linux1) OUT="linux-aout" ;; sun4u*-*-solaris2) - ISA=`(isalist) 2>/dev/null` - ISA64=`echo $ISA | grep sparcv9` - ISA=`set $ISA; echo $1` - OUT="solaris-$ISA-$CC" ;; + OUT="solaris-sparcv9-$CC" + ISA64=`(isalist) 2>/dev/null | grep sparcv9` if [ "$ISA64" != "" ]; then if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then echo "WARNING! If you wish to build 64-bit library, then you have to" |