diff options
Diffstat (limited to 'librelogo')
-rw-r--r-- | librelogo/CustomTarget_librelogo.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/librelogo/CustomTarget_librelogo.mk b/librelogo/CustomTarget_librelogo.mk index a523d501b2de..6cc693f34aa2 100644 --- a/librelogo/CustomTarget_librelogo.mk +++ b/librelogo/CustomTarget_librelogo.mk @@ -17,7 +17,7 @@ $(call librelogo_Properties__Properties_impl,$(librelogo_DIR)/LibreLogo_$(1).pro endef define librelogo_Properties__Properties_impl -$(1) : LANG := $(4) +$(1) : LANGUAGE := $(4) $(1) : POFILE := $(3) $(1) : SOURCE := $(2) @@ -37,20 +37,20 @@ $(librelogo_DIR)/LibreLogo_%.properties : \ | $(librelogo_DIR)/.dir $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRP,1) $(call gb_Helper_abbreviate_dirs, \ - $(if $(filter-out qtz,$(LANG)), \ + $(if $(filter-out qtz,$(LANGUAGE)), \ MERGEINPUT=$(call var2file,$(shell $(gb_MKTEMP)),100,$(POFILE)) && \ $(call gb_Executable_get_command,propex) \ -i $(SOURCE) \ -o $@ \ -m $${MERGEINPUT} \ - -l $(LANG) && \ + -l $(LANGUAGE) && \ rm -rf $${MERGEINPUT} \ , \ $(call gb_Executable_get_command,propex) \ -i $(SOURCE) \ -o $@ \ -m \ - -l $(LANG) \ + -l $(LANGUAGE) \ ) \ ) |