6992226: Missing windows COMPANY file property settings
authorccheung
Tue, 09 Nov 2010 23:05:33 -0800
changeset 7308 95b4878b4890
parent 7307 3c2ccfd2eaff
child 7309 c0a09e5eca8e
child 7565 0fa5baf68639
6992226: Missing windows COMPANY file property settings Reviewed-by: ohair
jdk/make/common/Defs.gmk
--- a/jdk/make/common/Defs.gmk	Thu Nov 18 10:35:46 2010 -0800
+++ b/jdk/make/common/Defs.gmk	Tue Nov 09 23:05:33 2010 -0800
@@ -83,14 +83,19 @@
   CLOSED_SRC  = $(BUILDDIR)/../src/closed
 endif
 
-# If we have no closed directory, force it to an openjdk build
-CLOSED_SRC_DIR_EXISTS := $(shell \
-  if [ -d $(CLOSED_SRC) ] ; then \
-    echo true; \
-  else \
-    echo false; \
-  fi)
-ifeq ($(CLOSED_SRC_DIR_EXISTS), false)
+# If CLOSE_SRC_INCLUDED isn't set to true, check if there's any
+# closed directory.
+ifneq ($(CLOSED_SRC_INCLUDED), true)
+  CLOSED_SRC_INCLUDED := $(shell \
+    if [ -d $(CLOSED_SRC) ] ; then \
+      echo true; \
+    else \
+      echo false; \
+    fi)
+endif
+
+# Set OPENJDK based on CLOSED_SRC_INCLUDED
+ifeq ($(CLOSED_SRC_INCLUDED), false)
   OPENJDK = true
 endif