From cf903dd66a53758f2cb98229c9cd92be3165b66f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20M=C3=BCller?= Date: Wed, 6 Mar 2019 19:26:53 +0100 Subject: [PATCH] Fix build with Make 4.2 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e63f8feaff..e126e13a6a 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,10 @@ all: $(shell find ./ -name '*.sources') # generate tag maps # ----------------------------------------------------------------------------- -TAGMAP := $(shell find ./ -name '*.xml' \ +# We only have to look at the English files; all translations will have the +# same tags. This speeds up the process and brings the list below the length +# limit for a command line (for now). +TAGMAP := $(shell find ./ -name '*.en.xml' \ | xargs ./build/source_globber.sh map_tags \ | sed -r "s;';'\'';g; s;[^ ]+;'&';g;" \ )