* 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.
This commit is contained in:
parent
005775ce97
commit
252c8b3bc0
1 changed files with 4 additions and 3 deletions
|
@ -526,9 +526,10 @@ case "${configuration}" in
|
|||
;;
|
||||
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
|
||||
;;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue