summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-02-17 15:05:29 +0100
committerJan Engelhardt <jengelh@medozas.de>2009-02-17 15:07:02 +0100
commit0ff6b46a331b7fa620c40d3110be5b3deb3c40a6 (patch)
tree48173e6bd6db74afee530a7934eed308c0239d61 /extensions
parent2c2466b0643393c1249d0650807a27f675969e6d (diff)
doc: do not put IPv4 doc into ip6tables.8
Reference: http://bugs.debian.org/515752 Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/GNUmakefile.in16
1 files changed, 5 insertions, 11 deletions
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)