mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
Disable tools/choose-default-locale.sh when cross compiling
This commit is contained in:
parent
d27d60b3bc
commit
50f2fc77d7
@ -834,8 +834,12 @@ substs.set('NTP_SERVERS', ntp_servers)
|
||||
|
||||
default_locale = get_option('default-locale')
|
||||
if default_locale == ''
|
||||
choose_default_locale_sh = find_program('tools/choose-default-locale.sh')
|
||||
default_locale = run_command(choose_default_locale_sh).stdout().strip()
|
||||
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
|
||||
endif
|
||||
conf.set_quoted('SYSTEMD_DEFAULT_LOCALE', default_locale)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user