Merge
This commit is contained in:
commit
b6fc4748ce
@ -37,3 +37,4 @@ ffd09e767dfa6d21466183a400f72cf62d53297f jdk7-b57
|
|||||||
39565502682c7085369bd09e51640919dc741097 jdk7-b60
|
39565502682c7085369bd09e51640919dc741097 jdk7-b60
|
||||||
472c21584cfd7e9c0229ad6a100366a5c03d2976 jdk7-b61
|
472c21584cfd7e9c0229ad6a100366a5c03d2976 jdk7-b61
|
||||||
c7ed15ab92ce36a09d264a5e34025884b2d7607f jdk7-b62
|
c7ed15ab92ce36a09d264a5e34025884b2d7607f jdk7-b62
|
||||||
|
57f7e028c7ad1806500ae89eb3f4cd9a51b10e18 jdk7-b63
|
||||||
|
@ -37,3 +37,4 @@ c55be0c7bd32c016c52218eb4c8b5da8a75450b5 jdk7-b59
|
|||||||
a77eddcd510c3972717c025cfcef9a60bfa4ecac jdk7-b60
|
a77eddcd510c3972717c025cfcef9a60bfa4ecac jdk7-b60
|
||||||
27b728fd1281ab62e9d7e4424f8bbb6ca438d803 jdk7-b61
|
27b728fd1281ab62e9d7e4424f8bbb6ca438d803 jdk7-b61
|
||||||
a88386380bdaaa5ab4ffbedf22c57bac5dbec034 jdk7-b62
|
a88386380bdaaa5ab4ffbedf22c57bac5dbec034 jdk7-b62
|
||||||
|
32c83fb84370a35344676991a48440378e6b6c8a jdk7-b63
|
||||||
|
@ -153,6 +153,20 @@ ifdef OPENJDK
|
|||||||
endif
|
endif
|
||||||
SKIP_OPENJDK_BUILD = true
|
SKIP_OPENJDK_BUILD = true
|
||||||
else
|
else
|
||||||
|
|
||||||
|
# Various non-OPENJDK reasons to NOT build the deploy repository
|
||||||
|
ifeq ($(ARCH), ia64)
|
||||||
|
BUILD_DEPLOY=false
|
||||||
|
endif
|
||||||
|
ifeq ($(ARCH), sparcv9)
|
||||||
|
BUILD_DEPLOY=false
|
||||||
|
endif
|
||||||
|
ifeq ($(ARCH), amd64)
|
||||||
|
ifeq ($(PLATFORM), solaris)
|
||||||
|
BUILD_DEPLOY=false
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifndef SKIP_OPENJDK_BUILD
|
ifndef SKIP_OPENJDK_BUILD
|
||||||
#SKIP_OPENJDK_BUILD = false
|
#SKIP_OPENJDK_BUILD = false
|
||||||
# Until 6675289 is resolved, or this feature is removed.
|
# Until 6675289 is resolved, or this feature is removed.
|
||||||
|
@ -27,11 +27,7 @@
|
|||||||
# DEPLOY TARGETS
|
# DEPLOY TARGETS
|
||||||
################################################################
|
################################################################
|
||||||
|
|
||||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
|
||||||
deploy: deploy-build
|
deploy: deploy-build
|
||||||
else
|
|
||||||
deploy:
|
|
||||||
endif
|
|
||||||
|
|
||||||
DEPLOY = deploy
|
DEPLOY = deploy
|
||||||
|
|
||||||
@ -45,7 +41,51 @@ else
|
|||||||
IMAGES_TARGET = images
|
IMAGES_TARGET = images
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DEPLOY_BUILD_TARGETS = sanity javaws-all plugin-all
|
DEPLOY_BUILD_TARGETS = sanity javaws-all plugin-all
|
||||||
|
# Only build 7-Zip LZMA file compression if it is available
|
||||||
|
# Enable 7-Zip LZMA file (de)compression for Java Kernel if it is available
|
||||||
|
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||||
|
ifeq ($(PLATFORM), windows)
|
||||||
|
ifneq ($(KERNEL), off)
|
||||||
|
EC_TMP = $(shell if [ -d $(DEPLOY_TOPDIR)/make/lzma ] ; then \
|
||||||
|
$(ECHO) true ; \
|
||||||
|
else \
|
||||||
|
$(ECHO) false ; \
|
||||||
|
fi )
|
||||||
|
ifeq ($(EC_TMP), true)
|
||||||
|
DEPLOY_BUILD_TARGETS += extra-comp-all
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(JQS), off)
|
||||||
|
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||||
|
ifeq ($(PLATFORM), windows)
|
||||||
|
DEPLOY_BUILD_TARGETS += jqs-all
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifneq ($(KERNEL), off)
|
||||||
|
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||||
|
ifeq ($(PLATFORM), windows)
|
||||||
|
# Only set up to use UPX compression if it is available
|
||||||
|
UP_TMP = $(shell if [ -d $(DEPLOY_TOPDIR)/make/upx ] ; then \
|
||||||
|
$(ECHO) true ; \
|
||||||
|
else \
|
||||||
|
$(ECHO) false ; \
|
||||||
|
fi )
|
||||||
|
ifeq ($(UP_TMP), true)
|
||||||
|
DEPLOY_BUILD_TARGETS += cmd-comp-all
|
||||||
|
endif
|
||||||
|
DEPLOY_BUILD_TARGETS += kernel-all
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ifndef DEV_ONLY
|
ifndef DEV_ONLY
|
||||||
DEPLOY_BUILD_TARGETS += images
|
DEPLOY_BUILD_TARGETS += images
|
||||||
else
|
else
|
||||||
@ -80,27 +120,21 @@ ifdef PKEY
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
deploy-build:
|
deploy-build:
|
||||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
ifeq ($(BUILD_DEPLOY), true)
|
||||||
ifeq ($(BUILD_DEPLOY), true)
|
|
||||||
($(CD) $(DEPLOY_TOPDIR)/make && \
|
($(CD) $(DEPLOY_TOPDIR)/make && \
|
||||||
$(MAKE) $(DEPLOY_BUILD_TARGETS) $(DEPLOY_BUILD_ARGUMENTS))
|
$(MAKE) $(DEPLOY_BUILD_TARGETS) $(DEPLOY_BUILD_ARGUMENTS))
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
deploy-clobber::
|
deploy-clobber::
|
||||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
ifeq ($(BUILD_DEPLOY), true)
|
||||||
ifeq ($(BUILD_DEPLOY), true)
|
|
||||||
($(CD) $(DEPLOY_TOPDIR)/make && \
|
($(CD) $(DEPLOY_TOPDIR)/make && \
|
||||||
$(MAKE) clobber $(DEPLOY_BUILD_ARGUMENTS))
|
$(MAKE) clobber $(DEPLOY_BUILD_ARGUMENTS))
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
deploy-sanity::
|
deploy-sanity::
|
||||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
ifeq ($(BUILD_DEPLOY), true)
|
||||||
ifeq ($(BUILD_DEPLOY), true)
|
|
||||||
($(CD) $(DEPLOY_TOPDIR)/make && \
|
($(CD) $(DEPLOY_TOPDIR)/make && \
|
||||||
$(MAKE) sanity $(DEPLOY_BUILD_ARGUMENTS))
|
$(MAKE) sanity $(DEPLOY_BUILD_ARGUMENTS))
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: deploy deploy-build deploy-clobber deploy-sanity
|
.PHONY: deploy deploy-build deploy-clobber deploy-sanity
|
||||||
|
Loading…
Reference in New Issue
Block a user