Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-16 13:41:35 +0400
committerRichard Levitte <levitte@openssl.org>2002-08-16 13:41:35 +0400
commit384897f46bda15de011c659bb9c4253c1aed2d93 (patch)
treefb14be8aa289b826ebfe41aa3b978ccb1c786b58 /config
parent08e60fc0ff6f65ff4cebcd6067c2011587cbab00 (diff)
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-xconfig6
1 files changed, 2 insertions, 4 deletions
diff --git a/config b/config
index 7cfc4f9330..3e9af7680a 100755
--- a/config
+++ b/config
@@ -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"