Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1185989
| From | David Herrmann <dh.herrmann@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] kdbus: fix unused %docs make-targets |
| Date | 2015-07-16 17:40 +0200 |
| Message-ID | <pMTqs-2pX-61@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The top-level Makefile re-routes all %docs targets to the Documentation makefiles. The DocBook makefile supports a lot more targets than the kdbus makefile, and it seems unreasonable to expect that both will always be in sync. Therefore, add a fallback no-op target %docs: which is used for all unspecified %docs targets. We will, from time to time, add further %docs targets that make sense (like installdocs). But there is definitely no time pressure on those. However, we really should add this fallback now, as otherwise "make" will print errors due to unknown targets. Reported-by: Ulf Magnusson <ulfalizer.lkml@gmail.com> Tested-by: Jim Davis <jim.epost@gmail.com> Signed-off-by: David Herrmann <dh.herrmann@gmail.com> --- Documentation/kdbus/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Documentation/kdbus/Makefile b/Documentation/kdbus/Makefile index af87641..8caffe5 100644 --- a/Documentation/kdbus/Makefile +++ b/Documentation/kdbus/Makefile @@ -38,3 +38,7 @@ mandocs: $(MANFILES) htmldocs: $(HTMLFILES) clean-files := $(MANFILES) $(HTMLFILES) + +# we don't support other %docs targets right now +%docs: + @true -- 2.4.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] kdbus: fix unused %docs make-targets David Herrmann <dh.herrmann@gmail.com> - 2015-07-16 17:40 +0200
csiph-web