From: Richard Levitte Date: Sun, 27 Feb 2000 17:23:25 +0000 (+0000) Subject: Make sure to catch UnixWare 7, even if the version is 7.1.1 or X-Git-Tag: OpenSSL_0_9_5a-beta1~170 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2eb5bc5c6d3ddec5b50d1b4b181ab37b5e9bd2c6;p=oweals%2Fopenssl.git Make sure to catch UnixWare 7, even if the version is 7.1.1 or something like that. --- diff --git a/config b/config index 0155a6ac83..f57969bb44 100755 --- a/config +++ b/config @@ -61,7 +61,7 @@ if [ "x$XREL" != "x" ]; then echo "whatever-whatever-unixware1"; exit 0 ;; 5) - if [ "x$VERSION" = "x7" ]; then + if [ "`echo x$VERSION | sed -e 's/\..*//'`" = "x7" ]; then echo "${MACHINE}-sco-unixware7"; exit 0 fi ;;