summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-06-21 12:27:34 +0100
committerVincent Sanders <vince@kyllikki.org>2020-06-21 12:27:34 +0100
commit0ee5e23184d21bdadcbb24c769db09dd46b85356 (patch)
tree4ddf0e03038a1b6d9ce9ed6dcb5a07fb57661697 /Makefile
parentb2a1aa9b884ebe2b1283ba54a7864335539b66d7 (diff)
downloadnetsurf-0ee5e23184d21bdadcbb24c769db09dd46b85356.tar.gz
netsurf-0ee5e23184d21bdadcbb24c769db09dd46b85356.tar.bz2
change to using compiled split messages to remove a build time perl dependancy
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9aee14789..21e1f2a80 100644
--- a/Makefile
+++ b/Makefile
@@ -676,11 +676,11 @@ S_COMMON := \
# 1 = Language
define split_messages
-$$(MESSAGES_TARGET)/$(1)/Messages: resources/FatMessages
+$$(MESSAGES_TARGET)/$(1)/Messages: resources/FatMessages $$(TOOLROOT)/split-messages
$$(VQ)echo "MSGSPLIT: Language: $(1) Filter: $$(MESSAGES_FILTER)"
$$(Q)$$(MKDIR) -p $$(MESSAGES_TARGET)/$(1)
$$(Q)$$(RM) $$@
- $$(Q)$$(SPLIT_MESSAGES) -l $(1) -p $$(MESSAGES_FILTER) -f messages -o $$@ -z $$<
+ $$(Q)$$(TOOLROOT)/split-messages -l $(1) -p $$(MESSAGES_FILTER) -f messages -o $$@ -z $$<
CLEAN_MESSAGES += $$(MESSAGES_TARGET)/$(1)/Messages
MESSAGES += $$(MESSAGES_TARGET)/$(1)/Messages