diff options
author | Karl Berry <karl@freefriends.org> | 2013-11-30 02:21:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-11-30 02:21:01 +0000 |
commit | 24ea571725b480b3cdebdaa0e48507baaa39d6ae (patch) | |
tree | 5afd963d4e3de944ff730b8aaaf57b0da7ebf7b8 /Master | |
parent | 3f94fcbb19564df42bec708e978789bad6c4867e (diff) |
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@32281 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/doc.html | 2 | ||||
-rwxr-xr-x | Master/tlpkg/installer/config.guess | 30 |
2 files changed, 21 insertions, 11 deletions
diff --git a/Master/doc.html b/Master/doc.html index 0209ea266ac..7d2cfa0910b 100644 --- a/Master/doc.html +++ b/Master/doc.html @@ -5091,13 +5091,13 @@ LICR macros and encoding definition files for Greek. <a href="texmf-dist/doc/latex/greek-fontenc/alphabeta-test.pdf">alphabeta-test.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/alphabeta.sty.html">alphabeta.sty.html</a>, <a href="texmf-dist/doc/latex/greek-fontenc/diacritics.pdf">diacritics.pdf</a>, +<a href="texmf-dist/doc/latex/greek-fontenc/euenc-test.pdf">euenc-test.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/greek-euenc.def.html">greek-euenc.def.html</a>, <a href="texmf-dist/doc/latex/greek-fontenc/greek-fontenc.def.html">greek-fontenc.def.html</a>, <a href="texmf-dist/doc/latex/greek-fontenc/greekhyperref.pdf">greekhyperref.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/lgr2licr.lua.html">lgr2licr.lua.html</a>, <a href="texmf-dist/doc/latex/greek-fontenc/lgrenc-test.pdf">lgrenc-test.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/lgrenc.def.html">lgrenc.def.html</a>, -<a href="texmf-dist/doc/latex/greek-fontenc/test-euenc.pdf">test-euenc.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/textalpha-test.pdf">textalpha-test.pdf</a>, <a href="texmf-dist/doc/latex/greek-fontenc/textalpha.sty.html">textalpha.sty.html</a>. </small></li> diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess index b79252d6b10..9afd6762064 100755 --- a/Master/tlpkg/installer/config.guess +++ b/Master/tlpkg/installer/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2013-06-10' +timestamp='2013-11-29' # 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 @@ -1260,16 +1260,26 @@ EOF if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - case $UNAME_PROCESSOR in - i386) UNAME_PROCESSOR=x86_64 ;; - powerpc) UNAME_PROCESSOR=powerpc64 ;; - esac + if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi fi + elif test "$UNAME_PROCESSOR" = i386 ; then + # Avoid executing cc on OS X 10.9, as it ships with a stub + # that puts up a graphical alert prompting to install + # developer tools. Any system running Mac OS X 10.7 or + # later (Darwin 11 and later) is required to have a 64-bit + # processor. This is not true of the ARM version of Darwin + # that Apple uses in portable devices. + UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; |