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-15 19:21:00 +0400
committerRichard Levitte <levitte@openssl.org>2002-08-15 19:21:00 +0400
commit1ac3419ef6f182de30889dc708f99c54ef3518f1 (patch)
tree48ad38d3b0bdc0e6b93de934f6981353d00cba65 /config
parent1e9858a28baa8180accfa7f8218703aed66b961e (diff)
It seems like sun4u doesn't always have a sparcv9 inside. Trust isalist.
PR: 220
Diffstat (limited to 'config')
-rwxr-xr-xconfig6
1 files changed, 4 insertions, 2 deletions
diff --git a/config b/config
index 3e9af7680a..7cfc4f9330 100755
--- a/config
+++ b/config
@@ -595,8 +595,10 @@ EOF
fi ;;
*-*-linux1) OUT="linux-aout" ;;
sun4u*-*-solaris2)
- OUT="solaris-sparcv9-$CC"
- ISA64=`(isalist) 2>/dev/null | grep sparcv9`
+ ISA=`(isalist) 2>/dev/null`
+ ISA64=`echo $ISA | grep sparcv9`
+ ISA=`set $ISA; echo $1`
+ OUT="solaris-$ISA-$CC" ;;
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"