diff options
author | Jeff Law <law@redhat.com> | 1995-12-04 18:22:22 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1995-12-04 18:22:22 +0000 |
commit | c6aff92b174f3c5ec851b9f6c27714bafcc2124f (patch) | |
tree | e7a3a051d8e25575378565b1ed991a0aa2bdfcae | |
parent | 590a5acb70f0a18ebc15968ae3232e6b3c07d3db (diff) | |
download | emacs-c6aff92b174f3c5ec851b9f6c27714bafcc2124f.tar.gz |
* config.guess: Recognize HP model 816 machines as havinglibc-951206
a PA1.1 processor.
-rwxr-xr-x | config.guess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 1948c5398b4..93b974da4c6 100755 --- a/config.guess +++ b/config.guess @@ -219,7 +219,7 @@ EOF case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/7?? | 9000/8?[79] ) HP_ARCH=hppa1.1 ;; + 9000/7?? | 9000/8?[679] ) HP_ARCH=hppa1.1 ;; 9000/8?? ) HP_ARCH=hppa1.0 ;; esac HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` |