]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
doc: do not put IPv4 doc into ip6tables.8
authorJan Engelhardt <jengelh@medozas.de>
Tue, 17 Feb 2009 14:05:29 +0000 (15:05 +0100)
committerJan Engelhardt <jengelh@medozas.de>
Tue, 17 Feb 2009 14:07:02 +0000 (15:07 +0100)
Reference: http://bugs.debian.org/515752
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
extensions/GNUmakefile.in

index 1f063c8c7d092b4fbf28382e6f51fe2eeabaa16a..256ac08eb4084ced9c12de171ccb3d9962b1f9f7 100644 (file)
@@ -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)