From cfbeb88c44e6f6e02c6bc536ef70c11457b8982e Mon Sep 17 00:00:00 2001 From: igor Date: Thu, 12 Aug 2010 23:21:17 -0700 Subject: [PATCH] 6976516: Add support for compiling deploy ws without compiling j2se Reviewed-by: herrick, ohair --- make/common/internal/Resources.gmk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/common/internal/Resources.gmk b/make/common/internal/Resources.gmk index 03b90dd74..63a611882 100644 --- a/make/common/internal/Resources.gmk +++ b/make/common/internal/Resources.gmk @@ -251,13 +251,13 @@ compile_all_props: $(COMPILEPROPERTIES_JARFILE) $(COMPILE_PROP_options) # Make sure the build rule creates all the properties resources: -ifneq ($(PROPERTIES_FILES),) +ifneq ($(strip $(PROPERTIES_FILES)),) resources: strip_prop_options_clean strip_all_props clobber clean:: $(RM) $(STRIP_PROP_FILES) $(STRIP_PROP_options) endif -ifneq ($(COMPILED_PROPERTIES),) +ifneq ($(strip $(COMPILED_PROPERTIES)),) resources: compile_prop_options_clean compile_all_props clobber clean:: $(RM) $(COMPILE_PROP_JAVA_FILES) $(COMPILE_PROP_options) -- GitLab