# HG changeset patch # User Jim Blandy # Date 738441139 0 # Node ID e6338dd6e55ff347e91c84295f21dfe1071b4793 # Parent 0e9f73b6245d9d53c1780a333600015b6964c445 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m; the former gives you the operating system rev directly. Use s/hpux.h if we don't recognize what we got. diff -r 0e9f73b6245d -r e6338dd6e55f configure1.in --- a/configure1.in Wed May 26 18:27:58 1993 +0000 +++ b/configure1.in Wed May 26 18:32:19 1993 +0000 @@ -526,9 +526,10 @@ ;; hppa*-hp-hpux* ) ## Cross-compilation? Nah! - case "`uname -m`" in - 9000/8?? ) machine=hp9000s800 opsys=hpux ;; - 9000/7?? ) machine=hp9000s800 opsys=hpux8 ;; + case "`uname -r`" in + *.08.* ) machine=hp9000s800 opsys=hpux ;; + *.09.* ) machine=hp9000s800 opsys=hpux8 ;; + *) machine=hp9000s800 opsys=hpux ;; esac ;;