[openwrt/openwrt] ccache: Build with ENABLE_DOCUMENTATION=OFF

LEDE Commits lede-commits at lists.infradead.org
Sun May 23 07:19:01 PDT 2021


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/a52842a8d05e71ee46eca70c0165518d02674fa2

commit a52842a8d05e71ee46eca70c0165518d02674fa2
Author: David Adair <djabhead at aol.com>
AuthorDate: Fri May 14 16:04:27 2021 -0700

    ccache: Build with ENABLE_DOCUMENTATION=OFF
    
    This adjusts the Makefile to use the new option to turn off the
    doc builds. It will not cause any problems except a warning
    about unused options if combined with a ccache source missing
    the upstream patch.
    
    Since a config setting is required to re-enable the doc build this
    is equivalent to unconditionally disabling the docs if the config
    setting is not created.
    
    Signed-off-by: David Adair <djabhead at aol.com>
    (cherry picked from commit 2d1546832357a3a8bd18680bd31dd92050e739b2)
---
 tools/ccache/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile
index ff0204ae19..c69e26bd23 100644
--- a/tools/ccache/Makefile
+++ b/tools/ccache/Makefile
@@ -25,6 +25,9 @@ CMAKE_HOST_OPTIONS += \
 	-DCMAKE_SKIP_RPATH=FALSE \
 	-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOST}/lib" \
 
+ifneq (docs-$(CONFIG_BUILD_DOCUMENTATION),docs-y)
+CMAKE_HOST_OPTIONS += -DENABLE_DOCUMENTATION=OFF
+endif
 
 define Host/Install/ccache
 	$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/



More information about the lede-commits mailing list