]> granicus.if.org Git - procps-ng/commitdiff
nls: Add all man pages to pot file
authorCraig Small <csmall@dropbear.xyz>
Mon, 28 Oct 2019 20:48:50 +0000 (07:48 +1100)
committerCraig Small <csmall@dropbear.xyz>
Mon, 28 Oct 2019 20:48:50 +0000 (07:48 +1100)
The previous Makefile rule would only put the first required file
into the pot file because it used $< Unfortunately, due to how
po4a tools work, its not just a simple matter of changing it to $^
and you're done, but needs a foreach loop to add -m to each manpage
file.

This is a temporary fix, after some more work looking into po4a the
unified tool (called po4a) will be used.

man-po/Makefile.am

index dc7d03873d0349bdd274c5b1c3067527704809b9..c9d8a9f1282e0b33d144a797706c59b5a7532eed 100644 (file)
@@ -55,13 +55,16 @@ MAN_POT_FILES = $(top_srcdir)/free.1 $(top_srcdir)/kill.1 $(top_srcdir)/pgrep.1
 DIST_MAN_POTS = $(MAN_PS_POT) $(MAN_TOP_POT) $(MAN_POT)
 
 $(MAN_PS_POT): $(MAN_PS_POT_FILES)
-       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man -m $< -p $@
+       $(eval po4a_manfiles := $(foreach manfile,$^,$(addprefix -m , $(manfile))))
+       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man $(po4a_manfiles) -p $@
 
 $(MAN_TOP_POT): $(MAN_TOP_POT_FILES)
-       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man -m $< -p $@
+       $(eval po4a_manfiles := $(foreach manfile,$^,$(addprefix -m , $(manfile))))
+       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man $(po4a_manfiles) -p $@
 
 $(MAN_POT): $(MAN_POT_FILES)
-       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man -m $< -p $@
+       $(eval po4a_manfiles := $(foreach manfile,$^,$(addprefix -m , $(manfile))))
+       $(PO4A_UPDATEPO) -o translate_joined=MT -o noarg=ME -f man $(po4a_manfiles) -p $@
 
 dist_man_MANS = $(foreach lang, $(all_langs), $(foreach section, $(MAN_SECTIONS), $(wildcard $(lang)/man$(section)/*.$(section))))
 dist-hook: translate-mans