]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
doc: fix version number in xtables-addons.8
authorJeremy Sowden <jeremy@azazel.net>
Fri, 18 Aug 2023 14:28:28 +0000 (16:28 +0200)
committerJan Engelhardt <jengelh@inai.de>
Fri, 18 Aug 2023 14:56:40 +0000 (16:56 +0200)
In v3.21 a change was made to the man-page template to use `@PACKAGE_VERSION@`,
instead of manually updating the version number on every release.  However,
xtables-addons.8.in is not processed by configure, so the appropriate version is
never filled in.

Update Makefile.mans to handle it.

Fixes: b6611c54f2b5 ("Xtables-addons 3.21")
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Makefile.mans.in

index 60459cb98c8319d7306bfc76857ad7efba27911f..a4af81e8986e9d090905922f3bafcf32882abc1e 100644 (file)
@@ -36,7 +36,10 @@ man_run = \
 all: xtables-addons.8
 
 xtables-addons.8: ${srcdir}/xtables-addons.8.in matches.man targets.man
-       ${AM_V_GEN}sed -e '/@MATCHES@/ r matches.man' -e '/@TARGET@/ r targets.man' $< >$@;
+       ${AM_V_GEN}sed \
+               -e 's/@PACKAGE'_'VERSION@/@PACKAGE_VERSION@/' \
+               -e '/@MATCHES@/ r matches.man' \
+               -e '/@TARGET@/ r targets.man' $< >$@;
 
 matches.man: .manpages.lst ${wcman_matches}
        $(call man_run,${wlist_matches})