[oe-commits] [openembedded-core] 05/37: systemd: change default locale from C.UTF-8 to C

git at git.openembedded.org git at git.openembedded.org
Tue Apr 23 15:53:03 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit b65e1e800c0ae4ac267d892849c15918413613a2
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Tue Apr 16 17:49:43 2019 +0800

    systemd: change default locale from C.UTF-8 to C
    
    current default locale is set to C.UTF-8, but glibc not support
    locale C.UTF-8. so set to the default locale C.
    
    [snip]
            if not meson.is_cross_build()
                    choose_default_locale_sh = find_program('tools/choose-default-locale.sh')
                    default_locale = run_command(choose_default_locale_sh).stdout().strip()
            else
                    default_locale = 'C.UTF-8'
            endif
    
    if default locale set to C.UTF-8, it will cause libpcre ptest fail:
    
      re> //8+L
    ** Failed to set locale ""
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/systemd/systemd_241.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/systemd/systemd_241.bb b/meta/recipes-core/systemd/systemd_241.bb
index 3a58f44..a6deaf9 100644
--- a/meta/recipes-core/systemd/systemd_241.bb
+++ b/meta/recipes-core/systemd/systemd_241.bb
@@ -193,6 +193,7 @@ EXTRA_OEMESON += "-Dnobody-user=nobody \
                   -Drootlibdir=${rootlibdir} \
                   -Drootprefix=${rootprefix} \
                   -Dsysvrcnd-path=${sysconfdir} \
+                  -Ddefault-locale=C \
                   "
 
 # Hardcode target binary paths to avoid using paths from sysroot

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list