summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-21 17:45:16 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-21 17:45:16 +0000
commit08fc5c2b9f5a1138e1ac4b345bacf19b6fc81074 (patch)
treee3af365c760e986e1756208fbc5a65a679a8b7d2
parentc34b8e460c6a370af274e9b45d344a4c29bd2664 (diff)
Added a default HP-ARCH in th rule for HP. This is a short-term
workaround, hopefully code to detect the correct cpu will be there eventually 8-) Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1081 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rwxr-xr-xlib/make/config.guess4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/make/config.guess b/lib/make/config.guess
index df081839..e097c2e0 100755
--- a/lib/make/config.guess
+++ b/lib/make/config.guess
@@ -404,7 +404,9 @@ EOF
}
EOF
(${CC-cc} dummy.c -o dummy 2>/dev/null ) && HP_ARCH=`./dummy`
- rm -f dummy.c dummy
+ rm -f dummy.c dummy ;;
+ *)
+ HP_ARCH="hppa"
esac
HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
echo ${HP_ARCH}-hp-hpux${HPUX_REV}