Merge pull request #101 from getlantern/lantern

Fixed problem picking up policy jars in OpenJDK embedded build
This commit is contained in:
Joshua Warner 2013-11-11 08:34:46 -08:00
commit 80d49dada7

View File

@ -116,12 +116,12 @@ ifneq ($(openjdk),)
lib/security/java.policy lib/security/cacerts
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)
endif
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)
endif