diff options
author | Andras Timar <atimar@suse.com> | 2011-09-16 22:34:19 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2011-09-17 10:18:20 +0200 |
commit | 27c5d661ff8b00e0f8d2f697a83d6dfe13b540c7 (patch) | |
tree | 65c14876c7e86f8c9fd69ed4b0a4b739358c88ae /instsetoo_native | |
parent | c907a667c2dfab0a59ad182883a44bc751a22d53 (diff) |
do not build key id pseudolanguage for release builds
Diffstat (limited to 'instsetoo_native')
-rw-r--r-- | instsetoo_native/util/makefile.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/instsetoo_native/util/makefile.mk b/instsetoo_native/util/makefile.mk index 19868f88c72b..b5291cef2e09 100644 --- a/instsetoo_native/util/makefile.mk +++ b/instsetoo_native/util/makefile.mk @@ -77,7 +77,12 @@ LOCALPYFILES= \ $(BIN)$/msgbox.py .ENDIF -help_exist:=$(shell @find $(L10N_MODULE)/source/ -type d -name "helpcontent2" 2>/dev/null | sed -e "s|/helpcontent2||" -e "s|^.*/||" ) en-US +help_exist:=$(shell @find $(L10N_MODULE)/source/ -type d -name "helpcontent2" 2>/dev/null | sed -e "s|/helpcontent2||" -e "s|^.*/||" ) en-US qtz + +# do not build key is pseudolanguage for release builds +.IF "$(ENABLE_RELEASE_BUILD)"=="TRUE" +alllangiso:=$(alllangiso:s/qtz//) +.ENDIF allhelplangiso:=$(foreach,i,$(alllangiso) $(foreach,j,$(help_exist) $(eq,$i,$j $i $(NULL)))) |