diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-02 23:49:01 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-02 23:49:01 +0000 |
commit | f9f578f0683ff040dd9eee5ca658e310df6ff03f (patch) | |
tree | 37391f01ed3ec4da5aaa8201d513457c8b11edc9 /gnu/usr.bin/texinfo | |
parent | 5c2aace9ddc4ffb8ef8a9c9b08450d112089660d (diff) |
add zaurus, fix cats entry. ok jakob@ pvalchev@ deraadt@
Diffstat (limited to 'gnu/usr.bin/texinfo')
-rw-r--r-- | gnu/usr.bin/texinfo/config.guess | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/config.guess b/gnu/usr.bin/texinfo/config.guess index 91396276241..16de8a490ec 100644 --- a/gnu/usr.bin/texinfo/config.guess +++ b/gnu/usr.bin/texinfo/config.guess @@ -176,6 +176,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + cats:OpenBSD:*:*) + echo arm-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; @@ -203,6 +206,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in sun3:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + zaurus:OpenBSD:*:*) + echo arm-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; |