summaryrefslogtreecommitdiff
path: root/tcwg-llvm-release.sh
diff options
context:
space:
mode:
authorDiana Picus <diana.picus@linaro.org>2017-07-27 15:48:58 +0200
committerDiana Picus <diana.picus@linaro.org>2017-08-03 09:37:38 +0000
commitfe269e8c5c74817784af3d38176553caa651b505 (patch)
tree297288e8decead2241c64d86b76cc967c1b8794e /tcwg-llvm-release.sh
parentd217c76549d9f8e48aded74e42a070fe0472f840 (diff)
tcwg-llvm-release.sh: Set LC_ALL to C for the release
The release now tries to set up the test-suite by default, and it runs into trouble because the locale is not set. Address this by setting LC_ALL=C before running the release script. Change-Id: Ia09157e33fb956221684f96a8ea7ba75aaa2eeda
Diffstat (limited to 'tcwg-llvm-release.sh')
-rwxr-xr-xtcwg-llvm-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcwg-llvm-release.sh b/tcwg-llvm-release.sh
index 53d7655c..cb5bbbec 100755
--- a/tcwg-llvm-release.sh
+++ b/tcwg-llvm-release.sh
@@ -162,7 +162,7 @@ cd "$WORKSPACE" && chmod +x $RELEASE_SCRIPT
# - we want to push the binary public on success or failre
result=0
(
- cd "$WORKSPACE" && ./$RELEASE_SCRIPT -release $RELEASE $RCCALL -triple $TARGET -j$BUILDJOBS $OPENMP |& tee "$LOGBASE-release.$LOGEXT"
+ cd "$WORKSPACE" && LC_ALL=C ./$RELEASE_SCRIPT -release $RELEASE $RCCALL -triple $TARGET -j$BUILDJOBS $OPENMP |& tee "$LOGBASE-release.$LOGEXT"
) &
wait $! || result=$?