aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorpaulk <none@none>2010-11-17 11:55:01 -0500
committerpaulk <none@none>2010-11-17 11:55:01 -0500
commit591a92ed925e5cd89d6e26bc18e91311690e09c6 (patch)
treedaf726374c36aad000169e82c6279a3782301306 /make
parent5b6228f8c8f79aebe31e852b67491379f1054cfd (diff)
6997515: KERNEL=0 in JDK7 build causes loss of lzma compression.
Reviewed-by: billyh, jqzuo
Diffstat (limited to 'make')
-rw-r--r--make/deploy-rules.gmk2
1 files changed, 0 insertions, 2 deletions
diff --git a/make/deploy-rules.gmk b/make/deploy-rules.gmk
index 7e080a6..6b9f50c 100644
--- a/make/deploy-rules.gmk
+++ b/make/deploy-rules.gmk
@@ -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