summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2013-05-02 09:24:18 +0100
committerVincent Sanders <vince@netsurf-browser.org>2013-05-02 09:24:18 +0100
commit98369b74e21fb5cf769fcfdf0e717cf6592736c1 (patch)
tree77981019c92cba458b1f6dd39962eb3734923ea3 /Makefile
parent2f03a0bfaf10f3bba7c041d7d5189f764735d5fd (diff)
downloadnetsurf-98369b74e21fb5cf769fcfdf0e717cf6592736c1.tar.gz
netsurf-98369b74e21fb5cf769fcfdf0e717cf6592736c1.tar.bz2
fixup message splitting with updated tool
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e57800b37..88cb9bbb3 100644
--- a/Makefile
+++ b/Makefile
@@ -137,6 +137,7 @@ PERL=perl
MKDIR=mkdir
TOUCH=touch
STRIP=strip
+SPLIT_MESSAGES=$(PERL) utils/split-messages.pl
# Override this only if the host compiler is called something different
HOST_CC := gcc
@@ -744,7 +745,7 @@ FAT_LANGUAGES=de en fr it nl
define split_install_messages
$(foreach LANG, $(FAT_LANGUAGES), @echo MSGSPLIT: $(1)/$(LANG) to $(2)
$(Q)mkdir -p $(2)/$(LANG)$(3)
- $(Q)$(PERL) utils/split-messages.pl -l $(LANG) -p $(1) -f messages resources/FatMessages | gzip -9n > $(2)$(3)/$(LANG)/Messages
+ $(Q)$(SPLIT_MESSAGES) -l $(LANG) -p $(1) -f messages resources/FatMessages | gzip -9n > $(2)$(3)/$(LANG)/Messages
)
endef