summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-28 12:17:08 +0000
committerCarl Hetherington <cth@carlh.net>2013-10-28 12:17:08 +0000
commit894f300034d560f2a38c1ec0b693cd463599ba53 (patch)
tree96d22cffa9c1e14f04c5e1c2ec6a01ef5af261d8 /run
parentc565d34e9c687639dcf62b36828829b4b0ce3517 (diff)
Add missing LocaleGuard to prevent commas getting into config files.
Diffstat (limited to 'run')
-rwxr-xr-xrun/dcpomatic2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/dcpomatic b/run/dcpomatic
index cf3de165c..d79266d3a 100755
--- a/run/dcpomatic
+++ b/run/dcpomatic
@@ -12,7 +12,7 @@ elif [ "$1" == "--callgrind" ]; then
valgrind --tool="callgrind" build/src/tools/dcpomatic $*
elif [ "$1" == "--i18n" ]; then
shift
- LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 build/src/tools/dcpomatic "$*"
+ LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic "$*"
else
build/src/tools/dcpomatic $*
fi