mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
Fixed problem picking up policy jars in OpenJDK embedded build
This commit is contained in:
parent
4285d84406
commit
cfe041c7ac
4
makefile
4
makefile
@ -116,12 +116,12 @@ ifneq ($(openjdk),)
|
|||||||
lib/security/java.policy lib/security/cacerts
|
lib/security/java.policy lib/security/cacerts
|
||||||
|
|
||||||
local-policy = lib/security/local_policy.jar
|
local-policy = lib/security/local_policy.jar
|
||||||
ifeq ($(shell test -e "$(openjdk)/$(local-policy)" && echo found),found)
|
ifeq ($(shell test -e "$(openjdk)/jre/$(local-policy)" && echo found),found)
|
||||||
javahome-files += $(local-policy)
|
javahome-files += $(local-policy)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
export-policy = lib/security/US_export_policy.jar
|
export-policy = lib/security/US_export_policy.jar
|
||||||
ifeq ($(shell test -e "$(openjdk)/$(export-policy)" && echo found),found)
|
ifeq ($(shell test -e "$(openjdk)/jre/$(export-policy)" && echo found),found)
|
||||||
javahome-files += $(export-policy)
|
javahome-files += $(export-policy)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user