netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [pull] documentation fixes
@ 2009-02-17 14:08 Jan Engelhardt
  2009-02-17 14:08 ` [PATCH 1/2] build: trigger reconfigure when extensions/GNUmakefile.in changes Jan Engelhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jan Engelhardt @ 2009-02-17 14:08 UTC (permalink / raw)
  To: netfilter-devel; +Cc: kaber


Please pull from
	git://dev.medozas.de/iptables master

to receive:

	build: trigger reconfigure when extensions/GNUmakefile.in changes
	doc: do not put IPv4 doc into ip6tables.8

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] build: trigger reconfigure when extensions/GNUmakefile.in changes
  2009-02-17 14:08 [pull] documentation fixes Jan Engelhardt
@ 2009-02-17 14:08 ` Jan Engelhardt
  2009-02-17 14:08 ` [PATCH 2/2] doc: do not put IPv4 doc into ip6tables.8 Jan Engelhardt
  2009-02-17 14:20 ` [pull] documentation fixes Patrick McHardy
  2 siblings, 0 replies; 4+ messages in thread
From: Jan Engelhardt @ 2009-02-17 14:08 UTC (permalink / raw)
  To: netfilter-devel; +Cc: kaber

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 Makefile.am |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 41dc280..b8859ac 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -108,7 +108,8 @@ tarball:
 	tar -C /tmp -cjf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/;
 	rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};
 
-config.status: include/xtables.h.in include/iptables/internal.h.in
+config.status: extensions/GNUmakefile.in \
+	include/xtables.h.in include/iptables/internal.h.in
 
 # ldconfig may fail when we are not root (as is the case in build systems)
 # so add appropriate protection that it does not let `make` fail.
-- 
1.6.1.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] doc: do not put IPv4 doc into ip6tables.8
  2009-02-17 14:08 [pull] documentation fixes Jan Engelhardt
  2009-02-17 14:08 ` [PATCH 1/2] build: trigger reconfigure when extensions/GNUmakefile.in changes Jan Engelhardt
@ 2009-02-17 14:08 ` Jan Engelhardt
  2009-02-17 14:20 ` [pull] documentation fixes Patrick McHardy
  2 siblings, 0 replies; 4+ messages in thread
From: Jan Engelhardt @ 2009-02-17 14:08 UTC (permalink / raw)
  To: netfilter-devel; +Cc: kaber

Reference: http://bugs.debian.org/515752
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 extensions/GNUmakefile.in |   16 +++++-----------
 1 files changed, 5 insertions(+), 11 deletions(-)

diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
index 1f063c8..256ac08 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)
-- 
1.6.1.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [pull] documentation fixes
  2009-02-17 14:08 [pull] documentation fixes Jan Engelhardt
  2009-02-17 14:08 ` [PATCH 1/2] build: trigger reconfigure when extensions/GNUmakefile.in changes Jan Engelhardt
  2009-02-17 14:08 ` [PATCH 2/2] doc: do not put IPv4 doc into ip6tables.8 Jan Engelhardt
@ 2009-02-17 14:20 ` Patrick McHardy
  2 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2009-02-17 14:20 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

Jan Engelhardt wrote:
> Please pull from
> 	git://dev.medozas.de/iptables master
> 
> to receive:
> 
> 	build: trigger reconfigure when extensions/GNUmakefile.in changes
> 	doc: do not put IPv4 doc into ip6tables.8

Pulled and pushed out, thanks. Please include a full diffstat though,
that saves me from having to add up the individual diffstats manually :)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-02-17 14:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17 14:08 [pull] documentation fixes Jan Engelhardt
2009-02-17 14:08 ` [PATCH 1/2] build: trigger reconfigure when extensions/GNUmakefile.in changes Jan Engelhardt
2009-02-17 14:08 ` [PATCH 2/2] doc: do not put IPv4 doc into ip6tables.8 Jan Engelhardt
2009-02-17 14:20 ` [pull] documentation fixes Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).