8008424: Isolate PROFILE make variable from incidental setting in the environment

Reviewed-by: erikj, alanb
This commit is contained in:
David Holmes 2013-02-19 06:27:20 -05:00
parent aa38d46a14
commit 8c52b75d0f

View File

@ -91,10 +91,11 @@ demos:
+$(MAKE) -f CopySamples.gmk
# Create the final jdk and jre images, to be wrapped up
# into packages, or installed.
# into packages, or installed. Ensure PROFILE is not set
# in these cases.
images:
+$(MAKE) -f CreateJars.gmk
+$(MAKE) -f Images.gmk
+$(MAKE) PROFILE="" -f CreateJars.gmk
+$(MAKE) PROFILE="" -f Images.gmk
ifeq ($(OPENJDK_TARGET_OS), macosx)
+$(MAKE) -f Bundles.gmk
endif