summaryrefslogtreecommitdiff
path: root/configfsf.guess
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2004-10-07 19:29:57 +0200
committertege <tege@gmplib.org>2004-10-07 19:29:57 +0200
commitd4326262c59e9985af8c2cb9cd57ed976b51dcb3 (patch)
tree502a09495fd63f8f0aee8310103260abbf85251d /configfsf.guess
parent4db421def3bc414485bf3994e42dc7e6e36a4314 (diff)
downloadgmp-d4326262c59e9985af8c2cb9cd57ed976b51dcb3.tar.gz
Patch HP-UX code to accomodate HP compiler's new inability to read from stdin.
Diffstat (limited to 'configfsf.guess')
-rwxr-xr-xconfigfsf.guess5
1 files changed, 3 insertions, 2 deletions
diff --git a/configfsf.guess b/configfsf.guess
index 51fab4770..e0ef979f4 100755
--- a/configfsf.guess
+++ b/configfsf.guess
@@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
-timestamp='2004-03-12'
+timestamp='2004-10-07'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -659,7 +659,8 @@ EOF
then
# avoid double evaluation of $set_cc_for_build
test -n "$CC_FOR_BUILD" || eval $set_cc_for_build
- if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null
+ echo "__LP64__" > $dummy.c
+ if (CCOPTS= $CC_FOR_BUILD -E $dummy.c) | grep __LP64__ >/dev/null
then
HP_ARCH="hppa2.0w"
else