From 54493b233b52fa66031d41b2c7dadee804c60b07 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 8 Sep 2008 09:44:12 +0000 Subject: [PATCH] Force LC_ALL and LANG to "C", so that the test results are in english and nothing else. --- Scripts/developer_scripts/autotest_cgal_with_cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Scripts/developer_scripts/autotest_cgal_with_cmake b/Scripts/developer_scripts/autotest_cgal_with_cmake index db191110321..15b2c83265a 100755 --- a/Scripts/developer_scripts/autotest_cgal_with_cmake +++ b/Scripts/developer_scripts/autotest_cgal_with_cmake @@ -24,6 +24,11 @@ #sets the umask to 022 & 0777 umask 022 +# We want english warning and error messages!! +LANG=C +LC_ALL=C +export LANG +export LC_ALL SCP="scp" WGET="wget"