diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:17:09 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:17:09 +0000 |
commit | 5e349c21eb12e8346f9eeec9e1f389e621606ee0 (patch) | |
tree | 83c79e768fc634cca926fd84d9bd285ecbfbdf4e /gnu/usr.bin/lynx | |
parent | 323387d4ebd2385a46cf06ab856a3c52395f6b7b (diff) |
config changes to tell configure that macppc is a powerpc. Fixes this
issue for mvmeppc at the same time.
Diffstat (limited to 'gnu/usr.bin/lynx')
-rw-r--r-- | gnu/usr.bin/lynx/config.guess | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/usr.bin/lynx/config.guess b/gnu/usr.bin/lynx/config.guess index 251d0afee3d..38db15ba38d 100644 --- a/gnu/usr.bin/lynx/config.guess +++ b/gnu/usr.bin/lynx/config.guess @@ -213,12 +213,18 @@ EOF mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + macppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; mvme68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + mvmeppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; |