From: Jan Engelhardt Date: Tue, 17 Feb 2009 14:05:29 +0000 (+0100) Subject: doc: do not put IPv4 doc into ip6tables.8 X-Git-Tag: v1.4.3~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ff6b46a331b7fa620c40d3110be5b3deb3c40a6;p=thirdparty%2Fiptables.git doc: do not put IPv4 doc into ip6tables.8 Reference: http://bugs.debian.org/515752 Signed-off-by: Jan Engelhardt --- diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in index 1f063c8c..256ac08e 100644 --- a/extensions/GNUmakefile.in +++ b/extensions/GNUmakefile.in @@ -166,13 +166,7 @@ man_run = \ cat "$$f"; \ continue; \ fi; \ - f="${srcdir}/libipt_$$ext.man"; \ - if [ -f "$$f" ]; then \ - echo ".SS $$ext"; \ - cat "$$f"; \ - continue; \ - fi; \ - f="${srcdir}/libip6t_$$ext.man"; \ + f="${srcdir}/lib$(2)t_$$ext.man"; \ if [ -f "$$f" ]; then \ echo ".SS $$ext"; \ cat "$$f"; \ @@ -181,13 +175,13 @@ man_run = \ done >$@; matches4.man: .initext4.dd $(wildcard ${srcdir}/lib*.man) - $(call man_run,$(call ex_matches,${pfx_build_mod} ${pf4_build_mod})) + $(call man_run,$(call ex_matches,${pfx_build_mod} ${pf4_build_mod}),ip) matches6.man: .initext6.dd $(wildcard ${srcdir}/lib*.man) - $(call man_run,$(call ex_matches,${pfx_build_mod} ${pf6_build_mod})) + $(call man_run,$(call ex_matches,${pfx_build_mod} ${pf6_build_mod}),ip6) targets4.man: .initext4.dd $(wildcard ${srcdir}/lib*.man) - $(call man_run,$(call ex_targets,${pfx_build_mod} ${pf4_build_mod})) + $(call man_run,$(call ex_targets,${pfx_build_mod} ${pf4_build_mod}),ip) targets6.man: .initext6.dd $(wildcard ${srcdir}/lib*.man) - $(call man_run,$(call ex_targets,${pfx_build_mod} ${pf6_build_mod})) + $(call man_run,$(call ex_targets,${pfx_build_mod} ${pf6_build_mod}),ip6)