From d7b53877121ebe23bbb44756b57533797873f832 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 7 Aug 2023 13:39:02 -0400 Subject: [PATCH] enforce C locale, so that numbers are created and parsed correctly in the GUI text editor --- cmake/packaging/linux_wrapper.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmake/packaging/linux_wrapper.sh b/cmake/packaging/linux_wrapper.sh index b3aee1cb4f..a679030188 100755 --- a/cmake/packaging/linux_wrapper.sh +++ b/cmake/packaging/linux_wrapper.sh @@ -1,6 +1,9 @@ #!/bin/sh # wrapper for bundled executables +# reset locale to avoid problems with decimal numbers +export LC_ALL=C + BASEDIR=$(dirname "$0") EXENAME=$(basename "$0")