7019371: JDK7 is not building UPX. IFTW wrappers are not compressed.

Mon, 14 Feb 2011 14:29:10 -0500

author
paulk
date
Mon, 14 Feb 2011 14:29:10 -0500
changeset 307
e2370dfcc721
parent 306
df3abd560cbd
child 308
5466f13d19be

7019371: JDK7 is not building UPX. IFTW wrappers are not compressed.
Reviewed-by: billyh, jqzuo

make/deploy-rules.gmk file | annotate | diff | comparison | revisions
     1.1 --- a/make/deploy-rules.gmk	Wed Feb 09 16:05:25 2011 -0500
     1.2 +++ b/make/deploy-rules.gmk	Mon Feb 14 14:29:10 2011 -0500
     1.3 @@ -64,19 +64,17 @@
     1.4      endif
     1.5    endif
     1.6  endif
     1.7 -  
     1.8 -ifneq ($(KERNEL), off)
     1.9 -  ifeq ($(ARCH_DATA_MODEL), 32)
    1.10 -    ifeq ($(PLATFORM), windows)
    1.11 -      # Only set up to use UPX compression if it is available
    1.12 -      UP_TMP = $(shell if [ -d $(DEPLOY_TOPDIR)/make/upx ] ; then \
    1.13 -        $(ECHO) true ; \
    1.14 -      else \
    1.15 -        $(ECHO) false ; \
    1.16 -      fi )
    1.17 -      ifeq ($(UP_TMP), true)
    1.18 -        DEPLOY_BUILD_TARGETS += cmd-comp-all
    1.19 -      endif
    1.20 +
    1.21 +ifeq ($(ARCH_DATA_MODEL), 32)
    1.22 +  ifeq ($(PLATFORM), windows)
    1.23 +    # Only set up to use UPX compression if it is available
    1.24 +    UP_TMP = $(shell if [ -d $(DEPLOY_TOPDIR)/make/upx ] ; then \
    1.25 +      $(ECHO) true ; \
    1.26 +    else \
    1.27 +      $(ECHO) false ; \
    1.28 +    fi )
    1.29 +    ifeq ($(UP_TMP), true)
    1.30 +      DEPLOY_BUILD_TARGETS += cmd-comp-all
    1.31      endif
    1.32    endif
    1.33  endif

mercurial