diff options
Diffstat (limited to 'Build/source/utils')
-rw-r--r-- | Build/source/utils/tpic2pdftex/ChangeLog | 6 | ||||
-rwxr-xr-x | Build/source/utils/tpic2pdftex/tpic2pdftex.test | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/utils/tpic2pdftex/ChangeLog b/Build/source/utils/tpic2pdftex/ChangeLog index 5f61b06318e..6bc91efdd51 100644 --- a/Build/source/utils/tpic2pdftex/ChangeLog +++ b/Build/source/utils/tpic2pdftex/ChangeLog @@ -1,3 +1,9 @@ +2013-03-28 Karl Berry <karl@tug.org> + + * tpic2pdftex.test: set LC_ALL=C, unset LANG and LANGUAGE, + to avoid "Floating point numbers miss decimal point." error. + Report on tlbuild from Mojca, 27 Mar 2013 16:38:45. + 2011-10-04 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.am (EXTRA_DIST): Add tpic2pdftex and tpic2pdftex.1, diff --git a/Build/source/utils/tpic2pdftex/tpic2pdftex.test b/Build/source/utils/tpic2pdftex/tpic2pdftex.test index 754b05d7f91..154f26b780b 100755 --- a/Build/source/utils/tpic2pdftex/tpic2pdftex.test +++ b/Build/source/utils/tpic2pdftex/tpic2pdftex.test @@ -1,8 +1,12 @@ #! /bin/sh -# Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> +# Copyright (C) 2009, 2013 Peter Breitenlohner <tex-live@tug.org> # You may freely use, modify and/or distribute this file. +unset LANGUAGE +unset LANG +LC_ALL=C; export LC_ALL + for f in beamerexample example; do pic -z -t $srcdir/$f.pic >$f.tpic || exit 77 $srcdir/tpic2pdftex $f.tpic >$f.tex || exit 1 |