diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-18 03:27:27 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-18 03:27:27 +0000 |
commit | 2882bf890ff5cba6e86afe9c10963644aff948fb (patch) | |
tree | 4ec18c6ace4aba906d37af14f4a28d5c35760829 /config.guess | |
parent | 335ad393e66c36f2563b3a70943af3b01b6ec1e1 (diff) | |
download | gcc-2882bf890ff5cba6e86afe9c10963644aff948fb.tar.gz |
* config.sub, config.guess: Update from upstream sources.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142805 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.guess b/config.guess index 7b24a8728ca..aeb53233ecb 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. -timestamp='2008-11-15' +timestamp='2008-12-18' # 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 @@ -337,7 +337,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if echo '\n#ifdef __amd64\nIS_64BIT_ARCH\n#endif' | \ + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then |