From cfe041c7acbb5ff84c457e44d628dd965bb7f147 Mon Sep 17 00:00:00 2001 From: Ox To A Cart Date: Fri, 8 Nov 2013 09:11:46 -0600 Subject: [PATCH] Fixed problem picking up policy jars in OpenJDK embedded build --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index ae3da55383..9b50e9bf71 100755 --- a/makefile +++ b/makefile @@ -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