diff options
author | Karl Berry <karl@freefriends.org> | 2018-09-09 17:56:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-09-09 17:56:55 +0000 |
commit | 989c3cb88a72f0f7f1247721fffd10fd49cb89d8 (patch) | |
tree | ac695d7655e786662ee2cc799922f8283bb08317 /Build/source/utils | |
parent | fd0242c945fb9f727608ba740060ce6aee41e97e (diff) |
LC_ALL=LANGUAGE=C to try to avoid sed breakage, https://tug.org/pipermail/tlbuild/2018q3/004258.html; also export one variable at a time
git-svn-id: svn://tug.org/texlive/trunk@48633 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils')
-rwxr-xr-x | Build/source/utils/autosp/autosp-src/tex2aspc.test | 2 | ||||
-rwxr-xr-x | Build/source/utils/axodraw2/axodraw2-src/axohelp-big.test | 2 | ||||
-rw-r--r-- | Build/source/utils/lacheck/ChangeLog | 4 | ||||
-rwxr-xr-x | Build/source/utils/lacheck/lacheck.test | 4 |
4 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/utils/autosp/autosp-src/tex2aspc.test b/Build/source/utils/autosp/autosp-src/tex2aspc.test index cb035a4059d..45943206bf5 100755 --- a/Build/source/utils/autosp/autosp-src/tex2aspc.test +++ b/Build/source/utils/autosp/autosp-src/tex2aspc.test @@ -3,6 +3,8 @@ # Copyright 2018 Karl Berry <tex-live@tug.org> # You may freely use, modify and/or distribute this file. +LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE + if test -z "$test_srcdir"; then # If not set, then we are not running from `make check'. test_srcdir=`echo "$0" | sed -e 's,/[^\\/]*$,,'` # == dirname $0 diff --git a/Build/source/utils/axodraw2/axodraw2-src/axohelp-big.test b/Build/source/utils/axodraw2/axodraw2-src/axohelp-big.test index e0995335d37..00b0e12bd40 100755 --- a/Build/source/utils/axodraw2/axodraw2-src/axohelp-big.test +++ b/Build/source/utils/axodraw2/axodraw2-src/axohelp-big.test @@ -3,6 +3,8 @@ # Copyright (C) 2018 John Collins (jcc8 at psu dot edu) # You may freely use, modify and/or distribute this file. +LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE + # Notes about interpretation of tests: # The test file was generated in the compilation of axodraw2's manual, # and this test script therefore verifies much functionality of diff --git a/Build/source/utils/lacheck/ChangeLog b/Build/source/utils/lacheck/ChangeLog index 4a1c3657dee..fca13bd8d9b 100644 --- a/Build/source/utils/lacheck/ChangeLog +++ b/Build/source/utils/lacheck/ChangeLog @@ -1,3 +1,7 @@ +2018-09-09 Karl Berry <karl@tug.org> + + * lacheck.test: LC_ALL=LANGUAGE=C. + 2015-07-07 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.am: Better dependencies for 'make check'. diff --git a/Build/source/utils/lacheck/lacheck.test b/Build/source/utils/lacheck/lacheck.test index a5d4afa640e..614462104c8 100755 --- a/Build/source/utils/lacheck/lacheck.test +++ b/Build/source/utils/lacheck/lacheck.test @@ -1,9 +1,11 @@ #! /bin/sh -vx # $Id$ -# Copyright 2017 Karl Berry <tex-live@tug.org> +# Copyright 2017-2018 Karl Berry <tex-live@tug.org> # Copyright 2009-2014 Peter Breitenlohner <tex-live@tug.org> # You may freely use, modify and/or distribute this file. +LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE + ./lacheck $srcdir/test.tex | \ sed -e "s!$srcdir/test.tex!./test.tex!g" >test.out || exit 1 |