From: Ben Laurie Date: Sun, 17 Jan 1999 14:20:20 +0000 (+0000) Subject: Correct Linux 1 recognition. X-Git-Tag: OpenSSL_0_9_2b~249 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=dabba1104b74f5f0926af71d2466b0b00fc99c20;hp=f9e6fac357a42cdcc1b838582825aedad7c920e4;ds=inline Correct Linux 1 recognition. Contributed by: Ulf Möller --- 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 ] + *) Remove pointless MD5 hash when using DSA keys in ca. [Anonymous ] 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" ;;