summaryrefslogtreecommitdiff
path: root/Build/source/utils/tpic2pdftex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-03-27 23:48:58 +0000
committerKarl Berry <karl@freefriends.org>2013-03-27 23:48:58 +0000
commit657aab648e9ae6f3a13cc3ea6ddb37ad9476e6c7 (patch)
tree0baf17fcfcafe6112fc91cae4dc30687ae94aa55 /Build/source/utils/tpic2pdftex
parentcfb1e943eb2782734fb13768cf8242e6a03aa904 (diff)
force LC_ALL=C for test
git-svn-id: svn://tug.org/texlive/trunk@29532 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/tpic2pdftex')
-rw-r--r--Build/source/utils/tpic2pdftex/ChangeLog6
-rwxr-xr-xBuild/source/utils/tpic2pdftex/tpic2pdftex.test6
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