aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-01-17 14:20:20 +0000
committerBen Laurie <ben@openssl.org>1999-01-17 14:20:20 +0000
commitdabba1104b74f5f0926af71d2466b0b00fc99c20 (patch)
treee877f917f2079038c481571373a00d267c9ee039
parentf9e6fac357a42cdcc1b838582825aedad7c920e4 (diff)
downloadopenssl-dabba1104b74f5f0926af71d2466b0b00fc99c20.tar.gz
Correct Linux 1 recognition.
Contributed by: Ulf Möller <ulf@fitug.de>
-rw-r--r--CHANGES3
-rwxr-xr-xconfig2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index d117eb6314..9e95081d40 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,9 @@
Changes between 0.9.1c and 0.9.2
+ *) Correct Linux 1 recognition in config.
+ [Ulf Möller <ulf@fitug.de>]
+
*) Remove pointless MD5 hash when using DSA keys in ca.
[Anonymous <nobody@replay.com>]
diff --git a/config b/config
index 0416a5ad88..690f6630bc 100755
--- a/config
+++ b/config
@@ -304,7 +304,7 @@ fi
case "$GUESSOS" in
alpha-*-linux2) OUT="alpha-gcc" ;;
*-*-linux2) OUT="linux-elf" ;;
- *-*-linux) OUT="linux-aout" ;;
+ *-*-linux1) OUT="linux-aout" ;;
sun4*-sun-solaris2) OUT="solaris-sparc-$CC" ;;
*86*-sun-solaris2) OUT="solaris-x86-$CC" ;;
*-*-sunos4) OUT="sunos-$CC" ;;