All of lore.kernel.org
 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ messages in thread

* [PULL] Documentation fixes
@ 2017-07-13 16:35 Jonathan Corbet
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2017-07-13 16:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, linux-doc

The following changes since commit
1cb566ba5634d7593b8b2a0a5c83f1c9e14b2e09:

  scripts/kernel-doc: handle DECLARE_HASHTABLE (2017-07-03 06:57:09 -0600)

are available in the git repository at:

  git://git.lwn.net/linux.git tags/4.13-fixes

for you to fetch changes up to 51e988f4092428e3d2c9f141fba9f86583bc82f3:

  kokr/memory-barriers.txt: Fix obsolete link to atomic_ops.txt (2017-07-12 16:56:40 -0600)

----------------------------------------------------------------
A set of fixes for various warnings, including the one caused by the
removal of kernel/rcu/srcu.c.  Also correct a stray pointer in
memory-barriers.txt.

----------------------------------------------------------------
Jonathan Corbet (3):
      docs: Do not include from kernel/rcu/srcu.c
      docs: Include uaccess docs from the right file
      docs: Turn off section numbering for the input docs

SeongJae Park (2):
      memory-barriers.txt: Fix broken link to atomic_ops.txt
      kokr/memory-barriers.txt: Fix obsolete link to atomic_ops.txt

 Documentation/core-api/kernel-api.rst                |  2 +-
 Documentation/driver-api/basics.rst                  |  3 ---
 Documentation/input/index.rst                        |  1 -
 Documentation/memory-barriers.txt                    |  6 +++---
 Documentation/translations/ko_KR/memory-barriers.txt | 14 +++++++-------
 5 files changed, 11 insertions(+), 15 deletions(-)

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

* [PULL] Documentation fixes
@ 2017-12-04 21:52 Jonathan Corbet
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2017-12-04 21:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, linux-doc

The following changes since commit
4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323:

  Linux 4.15-rc1 (2017-11-26 16:01:47 -0800)

are available in the Git repository at:

  git://git.lwn.net/linux.git tags/docs-4.15-fixes

for you to fetch changes up to 9956cfef3409177d9e24ea4b7910148a18073a6f:

  Documentation: fix docs build error after source file removed (2017-12-03 15:11:45 -0700)

----------------------------------------------------------------
A handful of documentation fixes.  The most significant of these addresses
a problem with the new warning mode: it can break the build when confronted
with a source file containing malformed kerneldoc comments.

----------------------------------------------------------------
John Pittman (1):
      scsi: documentation: Fix case of 'scsi_device' struct mention(s)

Jonathan Neuschäfer (1):
      genericirq.rst: Remove :c:func:`...` in code blocks

Masanari Iida (1):
      dmaengine: doc : Fix warning "Title underline too short" while make xmldocs

Randy Dunlap (1):
      Documentation: fix docs build error after source file removed

Will Deacon (1):
      scripts/kernel-doc: Don't fail with status != 0 if error encountered with -none

 Documentation/core-api/genericirq.rst         | 16 ++++++++--------
 Documentation/driver-api/dmaengine/client.rst |  2 +-
 Documentation/driver-api/pci.rst              |  3 ---
 Documentation/scsi/scsi_mid_low_api.txt       |  6 +++---
 scripts/kernel-doc                            |  2 +-
 5 files changed, 13 insertions(+), 16 deletions(-)

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

end of thread, other threads:[~2017-12-04 21:52 UTC | newest]

Thread overview: 6+ 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
  -- strict thread matches above, loose matches on Subject: below --
2017-07-13 16:35 [PULL] Documentation fixes Jonathan Corbet
2017-12-04 21:52 Jonathan Corbet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.