8207365: Make man pages optional
Reviewed-by: tbell
This commit is contained in:
parent
c798b68ee1
commit
f53e04ead9
@ -121,6 +121,7 @@ TOOL_JDK_TARGETS := $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE)
|
|||||||
#
|
#
|
||||||
# Avoid evaluating this whole section on windows for speed and stability
|
# Avoid evaluating this whole section on windows for speed and stability
|
||||||
ifneq ($(OPENJDK_TARGET_OS), windows)
|
ifneq ($(OPENJDK_TARGET_OS), windows)
|
||||||
|
ifeq ($(BUILD_MANPAGES), true)
|
||||||
JRE_MAN_PAGES += \
|
JRE_MAN_PAGES += \
|
||||||
java.1 \
|
java.1 \
|
||||||
jjs.1 \
|
jjs.1 \
|
||||||
@ -230,6 +231,7 @@ ifneq ($(OPENJDK_TARGET_OS), windows)
|
|||||||
|
|
||||||
JRE_TARGETS += $(JRE_MAN_PAGE_LIST)
|
JRE_TARGETS += $(JRE_MAN_PAGE_LIST)
|
||||||
JDK_TARGETS += $(JDK_MAN_PAGE_LIST)
|
JDK_TARGETS += $(JDK_MAN_PAGE_LIST)
|
||||||
|
endif # BUILD_MANPAGES
|
||||||
endif # Windows
|
endif # Windows
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -233,6 +233,7 @@ JDKOPT_DETECT_INTREE_EC
|
|||||||
JDKOPT_ENABLE_DISABLE_FAILURE_HANDLER
|
JDKOPT_ENABLE_DISABLE_FAILURE_HANDLER
|
||||||
JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST
|
JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST
|
||||||
JDKOPT_EXCLUDE_TRANSLATIONS
|
JDKOPT_EXCLUDE_TRANSLATIONS
|
||||||
|
JDKOPT_ENABLE_DISABLE_MANPAGES
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
@ -604,3 +604,29 @@ AC_DEFUN([JDKOPT_EXCLUDE_TRANSLATIONS],
|
|||||||
|
|
||||||
AC_SUBST(EXCLUDE_TRANSLATIONS)
|
AC_SUBST(EXCLUDE_TRANSLATIONS)
|
||||||
])
|
])
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Optionally disable man pages
|
||||||
|
#
|
||||||
|
AC_DEFUN([JDKOPT_ENABLE_DISABLE_MANPAGES],
|
||||||
|
[
|
||||||
|
AC_ARG_ENABLE([manpages], [AS_HELP_STRING([--disable-manpages],
|
||||||
|
[Set to disable building of man pages @<:@enabled@:>@])])
|
||||||
|
|
||||||
|
BUILD_MANPAGES="true"
|
||||||
|
AC_MSG_CHECKING([if man pages should be built])
|
||||||
|
if test "x$enable_manpages" = "x"; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
elif test "x$enable_manpages" = "xyes"; then
|
||||||
|
AC_MSG_RESULT([yes, forced])
|
||||||
|
elif test "x$enable_manpages" = "xno"; then
|
||||||
|
AC_MSG_RESULT([no, forced])
|
||||||
|
BUILD_MANPAGES="false"
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
AC_MSG_ERROR([--enable-manpages can only yes/no or empty])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(BUILD_MANPAGES)
|
||||||
|
])
|
||||||
|
@ -305,6 +305,8 @@ ENABLE_GENERATE_CLASSLIST := @ENABLE_GENERATE_CLASSLIST@
|
|||||||
|
|
||||||
EXCLUDE_TRANSLATIONS := @EXCLUDE_TRANSLATIONS@
|
EXCLUDE_TRANSLATIONS := @EXCLUDE_TRANSLATIONS@
|
||||||
|
|
||||||
|
BUILD_MANPAGES := @BUILD_MANPAGES@
|
||||||
|
|
||||||
# The boot jdk to use. This is overridden in bootcycle-spec.gmk. Make sure to keep
|
# The boot jdk to use. This is overridden in bootcycle-spec.gmk. Make sure to keep
|
||||||
# it in sync.
|
# it in sync.
|
||||||
BOOT_JDK:=@BOOT_JDK@
|
BOOT_JDK:=@BOOT_JDK@
|
||||||
|
@ -243,6 +243,7 @@ var getJibProfilesCommon = function (input, data) {
|
|||||||
default_make_targets: ["product-bundles", "test-bundles"],
|
default_make_targets: ["product-bundles", "test-bundles"],
|
||||||
configure_args: concat(["--enable-jtreg-failure-handler"],
|
configure_args: concat(["--enable-jtreg-failure-handler"],
|
||||||
"--with-exclude-translations=de,es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
|
"--with-exclude-translations=de,es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
|
||||||
|
"--disable-manpages",
|
||||||
versionArgs(input, common))
|
versionArgs(input, common))
|
||||||
};
|
};
|
||||||
// Extra settings for debug profiles
|
// Extra settings for debug profiles
|
||||||
|
Loading…
Reference in New Issue
Block a user