diff options
author | Karl Berry <karl@freefriends.org> | 2009-01-28 18:45:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-01-28 18:45:01 +0000 |
commit | 9b204cb9ecf6172a976d11c77d222f7bd09cc378 (patch) | |
tree | 895876a5cc4157eea05b3f76cda743a5b0a904c4 /Build | |
parent | 925107e31d76fec749c7dcb9c8f1e9026e896b2b (diff) |
Build: export LANG
reautoconf: complain if given files, formatting.
tlnet-disabled-packages: try updating tex4ht now, since backups should work.
git-svn-id: svn://tug.org/texlive/trunk@12003 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/Build | 5 | ||||
-rwxr-xr-x | Build/source/reautoconf | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/Build/source/Build b/Build/source/Build index a394c0ba49f..27efea93f00 100755 --- a/Build/source/Build +++ b/Build/source/Build @@ -8,9 +8,8 @@ # overridden with environment variables. # clean up environment -unset TEXMFCNF -export TEXMFCNF -LANG=C +unset TEXMFCNF; export TEXMFCNF +LANG=C; export LANG # cd to our source directory. mydir=`dirname $0` diff --git a/Build/source/reautoconf b/Build/source/reautoconf index f8b8663cf16..fe42f51fc08 100755 --- a/Build/source/reautoconf +++ b/Build/source/reautoconf @@ -1,5 +1,4 @@ #! /bin/sh - # $Id$ # This "reautoconf" script found at the root of the TeX Live source tree # runs aclocal and autoconf (from PATH) in all relevant directories. @@ -82,13 +81,13 @@ done : ${TL_ACLOCAL=aclocal} echo "$0: using \"$TL_ACLOCAL\" = `$TL_ACLOCAL --version | sed 1q`" -echo "$0: if you want to use a different aclocal, set TL_ACLOCAL." +echo "$0: if you want to use a different aclocal, set TL_ACLOCAL." : ${TL_AUTOCONF=autoconf} echo "$0: using \"$TL_AUTOCONF\" = `$TL_AUTOCONF --version | sed 1q`" -echo "$0: if you want to use a different autoconf, set TL_AUTOCONF." +echo "$0: if you want to use a different autoconf, set TL_AUTOCONF." : ${TL_AUTOHEADER=autoheader} echo "$0: using \"$TL_AUTOHEADER\" = `$TL_AUTOHEADER --version | sed 1q`" -echo "$0: if you want to use a different autoheader, set TL_AUTOHEADER." +echo "$0: if you want to use a different autoheader, set TL_AUTOHEADER." # Give users a chance to quit here # and set TL_ACLOCAL, TL_AUTOCONF and/or TL_AUTOHEADER @@ -129,7 +128,10 @@ fi # Autoconf in all directories for dir in $list; do - if test -f "$dir/configure.in"; then + if test ! -d "$dir"; then + echo "$0: $dir not a directory, skipping." >&2 + continue + elif test -f "$dir/configure.in"; then base=configure.in elif test -f "$dir/configure.ac"; then base=configure.ac |