mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-29 02:26:36 +12:00
* config.guess (i86pc:SunOS:5.*:*, i86xen:SunOS:5.*:*): The full
path to /usr/bin/echo is necessary to work around the shell builtins for echo that do not handle newlines. From Ali Bahrami.
This commit is contained in:
parent
de9585ac6e
commit
7086ee2638
@ -1,3 +1,9 @@
|
|||||||
|
2008-12-11 Ben Elliston <bje@gnu.org>
|
||||||
|
|
||||||
|
* config.guess (i86pc:SunOS:5.*:*, i86xen:SunOS:5.*:*): The full
|
||||||
|
path to /usr/bin/echo is necessary to work around the shell
|
||||||
|
builtins for echo that do not handle newlines. From Ali Bahrami.
|
||||||
|
|
||||||
2008-12-11 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2008-12-11 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* config.sub (lm32): New.
|
* config.sub (lm32): New.
|
||||||
|
8
config.guess
vendored
8
config.guess
vendored
@ -4,7 +4,7 @@
|
|||||||
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
|
||||||
timestamp='2008-11-15'
|
timestamp='2008-12-11'
|
||||||
|
|
||||||
# This file is free software; you can redistribute it and/or modify it
|
# 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
|
# under the terms of the GNU General Public License as published by
|
||||||
@ -335,9 +335,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|||||||
SUN_ARCH="i386"
|
SUN_ARCH="i386"
|
||||||
# If there is a compiler, see if it is configured for 64-bit objects.
|
# If there is a compiler, see if it is configured for 64-bit objects.
|
||||||
# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
|
# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
|
||||||
# This test works for both compilers.
|
# This test works for both compilers. Note that the full path to
|
||||||
|
# /usr/bin/echo is necessary to work around the shell builtins for
|
||||||
|
# echo that do not handle newlines.
|
||||||
if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
|
if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
|
||||||
if echo '\n#ifdef __amd64\nIS_64BIT_ARCH\n#endif' | \
|
if /usr/bin/echo '\n#ifdef __amd64\nIS_64BIT_ARCH\n#endif' | \
|
||||||
(CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
|
(CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
|
||||||
grep IS_64BIT_ARCH >/dev/null
|
grep IS_64BIT_ARCH >/dev/null
|
||||||
then
|
then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user