diff options
author | mmiyashi <mmiyashita@users.noreply.github.com> | 2015-07-28 00:07:59 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-01-22 17:58:15 +0100 |
commit | 74c2db31c06a6e7aec2677420db4d6d81fc0e54c (patch) | |
tree | ada54fda639f2724e59858e382efdade03a4cca6 /config | |
parent | Updated OSSL_DYNAMIC_VERSION/OSSL_DYNAMIC_OLDEST (diff) | |
download | openssl-74c2db31c06a6e7aec2677420db4d6d81fc0e54c.tar.xz openssl-74c2db31c06a6e7aec2677420db4d6d81fc0e54c.zip |
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-x | config | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |