|
Quick Lists
|
|
Bug ID:
|
6675289
|
|
Votes
|
0
|
|
Synopsis
|
Make default production build NOT include an openjdk build
|
|
Category
|
java:build
|
|
Reported Against
|
|
|
Release Fixed
|
7(b25)
|
|
State
|
10-Fix Delivered,
bug
|
|
Priority:
|
3-Medium
|
|
Related Bugs
|
6674227
|
|
Submit Date
|
13-MAR-2008
|
|
Description
|
Change the default of SKIP_OPENJDK_BUILD to true.
This setting is bouncing around a bit.
When set to false, and building a production JDK, this adds an additional build of the OpenJDK using the just built production JDK and binaryplugs. Somehow this is failing in some situations (see 6674227).
So it is being turned off, yet again, sorry.
Posted Date : 2008-03-13 23:09:30.0
|
|
Work Around
|
N/A
|
|
Evaluation
|
diff --git a/make/Defs-internal.gmk b/make/Defs-internal.gmk
--- a/make/Defs-internal.gmk
+++ b/make/Defs-internal.gmk
@@ -102,6 +102,11 @@ ifeq ($(JDK_SRC_AVAILABLE),true)
endif
endif
endif
+ifdef OPENJDK
+ ifneq ($(OPENJDK),true)
+ x:=$(error "OPENJDK can only be set to true")
+ endif
+endif
DEPLOY_SRC_AVAILABLE := $(call MkExists,$(DEPLOY_TOPDIR)/make/Makefile)
ifndef BUILD_DEPLOY
@@ -150,7 +155,8 @@ ifdef OPENJDK
SKIP_OPENJDK_BUILD = true
else
ifndef SKIP_OPENJDK_BUILD
- SKIP_OPENJDK_BUILD = false
+ #SKIP_OPENJDK_BUILD = false
+ SKIP_OPENJDK_BUILD = true
endif
endif
Posted Date : 2008-03-13 23:09:30.0
|
|
Comments
|
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|
|
|
 |