Fix build with Make 4.2

This commit is contained in:
Reinhard Müller 2019-03-06 19:26:53 +01:00
parent fceaceac75
commit cf903dd66a

View File

@ -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;" \
)