summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-02-27 17:23:25 +0000
committerRichard Levitte <levitte@openssl.org>2000-02-27 17:23:25 +0000
commit2eb5bc5c6d3ddec5b50d1b4b181ab37b5e9bd2c6 (patch)
tree0426578691244fa1d5f71cf012a982218ab425e1 /config
parent8f6dc9c50fe537b4ba21ab96af556d20b3ceee9d (diff)
Make sure to catch UnixWare 7, even if the version is 7.1.1 or
something like that.
Diffstat (limited to 'config')
-rwxr-xr-xconfig2
1 files changed, 1 insertions, 1 deletions
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
;;