Currently docs will build the images regardless of the setting for enable-user-docs at configure time. The image generation should be dependent on actually building docs so that systems without the image tools installed will not generate warnings.
Signed-off-by: Mike Holmes <[email protected]> --- doc/Makefile.am | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 41d804b..2a38106 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,10 +1,6 @@ -SUBDIRS = images - -if HAVE_DOXYGEN +if user_guide clean-local: rm -rf output -endif -if user_guide -SUBDIRS += implementers-guide users-guide process-guide +SUBDIRS = images implementers-guide users-guide process-guide endif -- 2.5.0 _______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
