diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-15 16:26:11 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-15 21:07:37 +0000 |
commit | 183f5e38ee775f2e8c57bd061db80baf7da3b4c7 (patch) | |
tree | e4d04a40c504715d73525ce7d90431dd5fe78563 /config_host_lang.mk.in | |
parent | 33e26da304922d5e6f46350492324dfce0afb3ef (diff) |
don't export the various language lists and consolidate them
this further frees the environment for Windows builders, to reduce the
risk of running into "environment is too large for exec" errors when
attempting to use xargs in a recipe.
Change-Id: I7e0b97163372018edb12329f24bb1dfafeefc526
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144235
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'config_host_lang.mk.in')
-rw-r--r-- | config_host_lang.mk.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config_host_lang.mk.in b/config_host_lang.mk.in index dbd641499599..f6052bfcefcf 100644 --- a/config_host_lang.mk.in +++ b/config_host_lang.mk.in @@ -3,6 +3,7 @@ # and not to be sourced in a shell session # -export ALL_LANGS=@ALL_LANGS@ -export WITH_LANG=@WITH_LANG@ -export WITH_LANG_LIST=@WITH_LANG_LIST@ +ALL_LANGS=@ALL_LANGS@ +WITH_LANG=@WITH_LANG@ +WITH_LANG_LIST=@WITH_LANG_LIST@ +WITH_POOR_HELP_LOCALIZATIONS=@WITH_POOR_HELP_LOCALIZATIONS@ |