7201205: Add Makefile configuration option to build with unlimited crypto in OpenJDK
Allow OpenJDK to use the unlimited crypto policy. Reviewed-by: wetmore, ohair
This commit is contained in:
parent
903c4c0c7f
commit
0fa038b4e0
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user