From db4a6fb81abce65241be14775f24d679c16b244a Mon Sep 17 00:00:00 2001 From: andrew Date: Thu, 27 Sep 2012 17:55:10 +0100 Subject: [PATCH] 7201205: Add Makefile configuration option to build with unlimited crypto in OpenJDK. Summary: Allow OpenJDK to use the unlimited crypto policy. Reviewed-by: wetmore, ohair --- make/javax/crypto/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/make/javax/crypto/Makefile b/make/javax/crypto/Makefile index f9089f902..e446e4640 100644 --- a/make/javax/crypto/Makefile +++ b/make/javax/crypto/Makefile @@ -158,7 +158,12 @@ include $(BUILDDIR)/common/Classes.gmk # ifdef OPENJDK -all: build-jar install-jar build-policy install-limited +ifdef UNLIMITED_CRYPTO +POLICY = install-unlimited +else +POLICY = install-limited +endif +all: build-jar install-jar build-policy $(POLICY) else # OPENJDK ifeq ($(strip $(FILES_java)),) all: -- GitLab