summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormmiyashi <mmiyashita@users.noreply.github.com>2015-07-27 17:07:59 -0500
committerRich Salz <rsalz@openssl.org>2016-01-22 11:58:15 -0500
commit74c2db31c06a6e7aec2677420db4d6d81fc0e54c (patch)
treeada54fda639f2724e59858e382efdade03a4cca6 /config
parentfa8edbbd59dd2ea04e6b6ebaefc1be72c9fd7ba4 (diff)
downloadopenssl-new-74c2db31c06a6e7aec2677420db4d6d81fc0e54c.tar.gz
isalist(1) is obsolete; use isainfo(1)
Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'config')
-rwxr-xr-xconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/config b/config
index 2b3b6d8dc9..9f15553a8b 100755
--- a/config
+++ b/config
@@ -655,7 +655,7 @@ case "$GUESSOS" in
*-*-linux2) OUT="linux-generic32" ;;
sun4[uv]*-*-solaris2)
OUT="solaris-sparcv9-$CC"
- ISA64=`(isalist) 2>/dev/null | grep sparcv9`
+ ISA64=`(isainfo) 2>/dev/null | grep sparcv9`
if [ "$ISA64" != "" -a "$KERNEL_BITS" = "" ]; then
if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
echo "WARNING! If you wish to build 64-bit library, then you have to"
@@ -694,7 +694,7 @@ case "$GUESSOS" in
sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
*86*-*-solaris2)
- ISA64=`(isalist) 2>/dev/null | grep amd64`
+ ISA64=`(isainfo) 2>/dev/null | grep amd64`
if [ "$ISA64" != "" -a ${KERNEL_BITS:-64} -eq 64 ]; then
OUT="solaris64-x86_64-$CC"
else