diff options
author | louiz’ <louiz@louiz.org> | 2017-02-01 18:37:51 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-02-01 18:37:51 +0100 |
commit | 479b7189935baa4ca9c9d2a5525bdb1fbd8b9fef (patch) | |
tree | 89927ea3d40dbad1863e3c3a8d712d01085d0ff8 | |
parent | 5eb5e9e0afb996a74bb3a5f2c5fb8b66573aec3c (diff) | |
download | biboumi-479b7189935baa4ca9c9d2a5525bdb1fbd8b9fef.tar.gz biboumi-479b7189935baa4ca9c9d2a5525bdb1fbd8b9fef.tar.bz2 biboumi-479b7189935baa4ca9c9d2a5525bdb1fbd8b9fef.tar.xz biboumi-479b7189935baa4ca9c9d2a5525bdb1fbd8b9fef.zip |
Only use the C.UTF-8 LANG value
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | louloulibs/utils/time.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d934ef..1766e58 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -331,8 +331,8 @@ if(NOT DEFINED SERVICE_GROUP) endif() configure_file(unit/biboumi.service.cmake biboumi.service) -# The date MUST be in english format -set(ENV{LANG} "en_US.utf-8") +# Force the format of the date output +set(ENV{LANG} "C.UTF-8") execute_process(COMMAND "date" "+%a %b %d %Y" OUTPUT_VARIABLE RPM_DATE OUTPUT_STRIP_TRAILING_WHITESPACE) unset(ENV{LANG}) diff --git a/louloulibs/utils/time.cpp b/louloulibs/utils/time.cpp index e3c49ed..d9c4381 100644 --- a/louloulibs/utils/time.cpp +++ b/louloulibs/utils/time.cpp @@ -24,7 +24,7 @@ std::time_t parse_datetime(const std::string& stamp) std::tm t = {}; #ifdef HAS_GET_TIME std::istringstream ss(stamp); - ss.imbue(std::locale("en_US.UTF-8")); + ss.imbue(std::locale("C.UTF-8")); std::string timezone; ss >> std::get_time(&t, format) >> timezone; |