summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorMartin Schröder <martin@oneiros.de>2007-12-28 11:57:39 +0000
committerMartin Schröder <martin@oneiros.de>2007-12-28 11:57:39 +0000
commite2102c1f0858d1febfffef6fe90c6f5acb173021 (patch)
tree2dbd1947474858102aae967fac2bfed9df57ece3 /Build
parente985eb49c7b72d39e769db41386c812ca003f255 (diff)
Set LANG and capture the output of configure and make
git-svn-id: svn://tug.org/texlive/trunk@5967 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/Build5
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/Build b/Build/source/Build
index 530f2edccef..8056a19269b 100755
--- a/Build/source/Build
+++ b/Build/source/Build
@@ -10,6 +10,7 @@ cd $mydir || exit 1
: ${TL_WORKDIR=Work}
+LANG=C
if test "x$1" != "x--no-clean"; then
test -f Makefile && make clean
rm -rf $TL_WORKDIR inst
@@ -55,5 +56,5 @@ export GNUMAKE
--datadir=$TL_INSTALL_DEST \
$TL_XDVI_TOOLKIT \
$TL_CONFIGURE_ARGS \
- "$@" \
- && time $TL_MAKE $TL_TARGET)
+ "$@" |tee configure.log\
+ && time $TL_MAKE $TL_TARGET 2>&1|tee make.log)