From: Kornel Benko Date: Mon, 2 Oct 2017 08:35:57 +0000 (+0200) Subject: cmake tests: Try to use valid locales for testing X-Git-Tag: 2.3.0rc1~71 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9f5f4e2aa0613173e4293db4976b44b6a6979637;p=features.git cmake tests: Try to use valid locales for testing --- diff --git a/development/autotests/export.cmake b/development/autotests/export.cmake index 7a954aca6d..fc63cd47c8 100755 --- a/development/autotests/export.cmake +++ b/development/autotests/export.cmake @@ -91,8 +91,8 @@ function(get_md5sum msource mresult mreserr) endfunction() set(ENV{${LYX_USERDIR_VER}} "${LYX_TESTS_USERDIR}") -set(ENV{LANG} "en") # to get all error-messages in english -set(ENV{LC_ALL} "C") +set(ENV{LANG} "en_US.UTF-8") # to get all error-messages in english +#set(ENV{LC_ALL} "C") if (extension MATCHES "\\.lyx$") include(${TOP_SRC_DIR}/development/autotests/CheckLoadErrors.cmake) get_md5sum(LYX_SOURCE source_md5sum _err)