RFR: 8164071: Default.policy file missing content for solaris

Sean Mullan sean.mullan at oracle.com
Wed Aug 17 16:18:49 UTC 2016


Please review this simple fix to append the solaris default.policy file 
to the overall default.policy file.

Bug: https://bugs.openjdk.java.net/browse/JDK-8164071

diff -r 551f7617b2c0 make/copy/Copy-java.base.gmk
--- a/make/copy/Copy-java.base.gmk	Wed Aug 17 10:08:18 2016 +0800
+++ b/make/copy/Copy-java.base.gmk	Wed Aug 17 12:17:19 2016 -0400
@@ -185,6 +185,8 @@

  ifeq ($(OPENJDK_TARGET_OS), windows)
    DEF_POLICY_SRC_LIST += 
$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/lib/security/default.policy
+else ifeq ($(OPENJDK_TARGET_OS), solaris)
+  DEF_POLICY_SRC_LIST += 
$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/lib/security/default.policy 

  endif

  # Allow imported modules to modify the java.policy


Thanks,
Sean



More information about the build-dev mailing list