* [dpdk-dev] [PATCH] build: skip processing docs folder if docs disabled
@ 2020-01-03 14:46 Bruce Richardson
2020-02-16 10:07 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2020-01-03 14:46 UTC (permalink / raw)
To: dev; +Cc: bluca, Bruce Richardson
While each target is set to be ignored if the docs are disabled in the
meson build, there is little reason to process the docs folder at all.
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
doc/meson.build | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/doc/meson.build b/doc/meson.build
index c5410d85d..c49ec8476 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -1,6 +1,10 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
+if not get_option('enable_docs')
+ subdir_done()
+endif
+
doc_targets = []
doc_target_names = []
subdir('api')
--
2.24.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] build: skip processing docs folder if docs disabled
2020-01-03 14:46 [dpdk-dev] [PATCH] build: skip processing docs folder if docs disabled Bruce Richardson
@ 2020-02-16 10:07 ` Thomas Monjalon
2020-02-16 14:17 ` David Marchand
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Monjalon @ 2020-02-16 10:07 UTC (permalink / raw)
To: Bruce Richardson; +Cc: dev, bluca
03/01/2020 15:46, Bruce Richardson:
> While each target is set to be ignored if the docs are disabled in the
> meson build, there is little reason to process the docs folder at all.
>
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
> +if not get_option('enable_docs')
> + subdir_done()
> +endif
Why this patch is marked as superseded in patchwork?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] build: skip processing docs folder if docs disabled
2020-02-16 10:07 ` Thomas Monjalon
@ 2020-02-16 14:17 ` David Marchand
0 siblings, 0 replies; 3+ messages in thread
From: David Marchand @ 2020-02-16 14:17 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: Bruce Richardson, dev, Luca Boccassi
On Sun, Feb 16, 2020 at 11:07 AM Thomas Monjalon <thomas@monjalon.net> wrote:
>
> 03/01/2020 15:46, Bruce Richardson:
> > While each target is set to be ignored if the docs are disabled in the
> > meson build, there is little reason to process the docs folder at all.
> >
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> > +if not get_option('enable_docs')
> > + subdir_done()
> > +endif
>
> Why this patch is marked as superseded in patchwork?
>
Because there were other series superseding it.
https://patchwork.dpdk.org/project/dpdk/list/?series=8032&state=%2A&archive=both
https://patchwork.dpdk.org/project/dpdk/list/?series=8039&state=%2A&archive=both
https://patchwork.dpdk.org/project/dpdk/list/?series=8056&state=%2A&archive=both
Then after testing and discussion, it was dropped.
http://inbox.dpdk.org/dev/CAJFAV8wNAtWf0a3s=XMqz+itgKgOMNybDHtCDN-ihpJNM8yzvQ@mail.gmail.com/
--
David Marchand
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-02-16 14:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-03 14:46 [dpdk-dev] [PATCH] build: skip processing docs folder if docs disabled Bruce Richardson
2020-02-16 10:07 ` Thomas Monjalon
2020-02-16 14:17 ` David Marchand
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).