diff options
author | Andy Polyakov <appro@openssl.org> | 2003-01-19 21:47:06 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2003-01-19 21:47:06 +0000 |
commit | 9abff96b2f488163e8f340161b9d70f4ffb7b2b7 (patch) | |
tree | 06ca968ed5d7813404c2a8d2a1aeea1a9215c354 | |
parent | 722d17cbac898bf02ee8f75dabba87ab1373500d (diff) | |
download | openssl-new-9abff96b2f488163e8f340161b9d70f4ffb7b2b7.tar.gz |
Suggestion was to change ${MACHINE} to i586 in lines in question. Well,
"whatever" doesn't the same (avoids 386 being passed to ./Configure),
consistent with other elder SCO targets and denotes that we probably
shouldn't care much about every out-of-date platform.
-rwxr-xr-x | config | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,9 +75,9 @@ if [ "x$XREL" != "x" ]; then ;; 4.2MP) case "x${VERSION}" in - x2.0*) echo "${MACHINE}-whatever-unixware20"; exit 0 ;; - x2.1*) echo "${MACHINE}-whatever-unixware21"; exit 0 ;; - x2*) echo "${MACHINE}-whatever-unixware2"; exit 0 ;; + x2.0*) echo "whatever-whatever-unixware20"; exit 0 ;; + x2.1*) echo "whatever-whatever-unixware21"; exit 0 ;; + x2*) echo "whatever-whatever-unixware2"; exit 0 ;; esac ;; 4.2) |