diff options
author | Per Bothner <per@bothner.com> | 1993-01-20 07:43:32 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-01-20 07:43:32 +0000 |
commit | 897029a9a2fc78d312d2590831b9840938109683 (patch) | |
tree | b6d3ef0038f275d4497f7977d9dabb71d1135082 | |
parent | 2c763c2b0b60722ab3bec185c00aa5a5b11a6d30 (diff) | |
download | binutils-897029a9a2fc78d312d2590831b9840938109683.zip binutils-897029a9a2fc78d312d2590831b9840938109683.tar.gz binutils-897029a9a2fc78d312d2590831b9840938109683.tar.bz2 |
Fix (?) discrimination between hppa1.1 and 1.0.
-rwxr-xr-x | guess-systype | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guess-systype b/guess-systype index c55e2ac..3aebe31 100755 --- a/guess-systype +++ b/guess-systype @@ -43,7 +43,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in 9000/3??:HP-UX:*:*) echo m68k-hp-hpux exit 0 ;; - 9000/7??:HP-UX:*:*) + 9000/7??:HP-UX:*:* | 9000/8?7:HP-UX:*:* ) echo hppa1.1-hp-hpux exit 0 ;; 9000/8??:HP-UX:*:*) |