6997515: KERNEL=0 in JDK7 build causes loss of lzma compression

Reviewed-by: billyh, jqzuo
This commit is contained in:
Paul Klingaman 2010-11-17 11:55:01 -05:00
parent 44a4e2bc87
commit 3bf1b8793f

View File

@ -46,7 +46,6 @@ DEPLOY_BUILD_TARGETS = sanity deploy
# 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 \
@ -55,7 +54,6 @@ ifeq ($(ARCH_DATA_MODEL), 32)
ifeq ($(EC_TMP), true)
DEPLOY_BUILD_TARGETS += extra-comp-all
endif
endif
endif
endif