OpenJDK / jdk / hs
changeset 3571:764028d95393
6872177: JCE framework and provider builds broken following -target 7 changes
Reviewed-by: ohair
author | wetmore |
---|---|
date | Fri, 14 Aug 2009 17:29:31 -0700 |
parents | 853a0c7edcb5 |
children | 9a027a1c0510 |
files | make/Defs-internal.gmk |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/make/Defs-internal.gmk Mon Aug 10 10:49:32 2009 -0700 +++ b/make/Defs-internal.gmk Fri Aug 14 17:29:31 2009 -0700 @@ -133,7 +133,11 @@ # Do we build the source and openjdk binary plug bundles? BUNDLE_RULES = $(JDK_TOPDIR)/make/closed/bundles.gmk -BUNDLE_RULES_AVAILABLE := $(call MkExists,$(BUNDLE_RULES)) +ifeq ($(SKIP_BUNDLES_BUILD), true) + BUNDLE_RULES_AVAILABLE := false +else + BUNDLE_RULES_AVAILABLE := $(call MkExists,$(BUNDLE_RULES)) +endif # Current things we do NOT build for OPENJDK ifdef OPENJDK