summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/config.guess
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-12-12 02:41:27 +0000
committerKarl Berry <karl@freefriends.org>2008-12-12 02:41:27 +0000
commit9e797f5543ab4596abdf32da7bdf24f7303d4359 (patch)
treef0f364d8faa2d84675128c516aae3c7cfe8e56ac /Master/tlpkg/installer/config.guess
parent5180c35657124463caa4867259c86636ab93acb1 (diff)
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@11593 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/config.guess')
-rwxr-xr-xMaster/tlpkg/installer/config.guess8
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess
index 7b24a8728ca..c466aa76364 100755
--- a/Master/tlpkg/installer/config.guess
+++ b/Master/tlpkg/installer/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-11'
# 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
@@ -335,9 +335,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
SUN_ARCH="i386"
# 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.
- # 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 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) | \
grep IS_64BIT_ARCH >/dev/null
then