# HG changeset patch # User ihse # Date 1494485804 -7200 # Node ID 4f30865c93b055594ba290414e1c6a0041525161 # Parent 607a19971bd975814afd0a4a9ccd03f60fc23d91 8179105: Respect "include_in_docs" property from imported modules. Reviewed-by: mchung, erikj diff -r 607a19971bd9 -r 4f30865c93b0 make/common/Modules.gmk --- a/make/common/Modules.gmk Wed May 10 14:55:31 2017 -0700 +++ b/make/common/Modules.gmk Thu May 11 08:56:44 2017 +0200 @@ -391,7 +391,10 @@ else ifeq ($$(classloader), ext) PLATFORM_MODULES += $1 endif - DOCS_MODULES += $1 + ifneq ($$(include_in_docs), false) + # defaults to true if unspecified + DOCS_MODULES += $1 + endif else # Default to include in all JRE_MODULES += $1