diff --git a/Changes.md b/Changes.md index a7ddb757d6e..914be1bd281 100644 --- a/Changes.md +++ b/Changes.md @@ -1,6 +1,13 @@ 1.2.x.x (relative to 1.2.0.2) ======= +Fixes +----- + +- Locale : + - Reintroduced `LC_NUMERIC=C` environment variable assignment to wrapper. This was removed in `1.2.0.0` but is still necessary due to a [bug in Cortex](https://github.com/ImageEngine/cortex/issues/1338). + - Fixed serialisation of `.gfr` files in locales with non-default numeric formatting (#5158). + Documentation ------------- diff --git a/bin/gaffer b/bin/gaffer index ab7e7f8fd68..45c47afb78e 100755 --- a/bin/gaffer +++ b/bin/gaffer @@ -50,6 +50,12 @@ if [[ $1 == -psn_0_* ]] ; then shift fi +# Work around https://github.com/ImageEngine/cortex/issues/1338, which +# causes bad serialisations in certain locales. +########################################################################## + +export LC_NUMERIC=C + # Find where this script is located, resolving any symlinks that were used # to invoke it. Set GAFFER_ROOT based on the script location. ##########################################################################