makefiles/SignJars.gmk

Print this page

        

*** 82,99 **** $(call install-file) $(JARSIGNER) -keystore $(SIGNING_KEYSTORE) \ $@ $(SIGNING_ALIAS) < $(SIGNING_PASSPHRASE) @$(PRINTF) "\nJar codesigning finished.\n" ! JAR_LIST := jce.jar \ local_policy.jar \ sunec.jar \ sunjce_provider.jar \ sunpkcs11.jar \ ! US_export_policy.jar ! SIGNED_JARS := $(addprefix $(JCE_OUTPUTDIR)/,$(JAR_LIST)) $(SIGNED_JARS): check-keystore all: $(SIGNED_JARS) @$(PRINTF) "\n***The jar files built by the 'jar-sign' target must***" --- 82,108 ---- $(call install-file) $(JARSIGNER) -keystore $(SIGNING_KEYSTORE) \ $@ $(SIGNING_ALIAS) < $(SIGNING_PASSPHRASE) @$(PRINTF) "\nJar codesigning finished.\n" ! JAR_LIST := \ ! jce.jar \ local_policy.jar \ sunec.jar \ sunjce_provider.jar \ sunpkcs11.jar \ ! US_export_policy.jar \ ! sunmscapi.jar \ ! # ! UNSIGNED_JARS := $(wildcard $(addprefix $(JDK_OUTPUTDIR)/unsigned/, $(JAR_LIST))) ! ! ifeq ($(UNSIGNED_JARS), ) ! $(error No jars found in $(JDK_OUTPUTDIR)/unsigned/) ! endif ! ! SIGNED_JARS := $(patsubst $(JDK_OUTPUTDIR)/unsigned/%,$(JCE_OUTPUTDIR)/%, $(UNSIGNED_JARS)) $(SIGNED_JARS): check-keystore all: $(SIGNED_JARS) @$(PRINTF) "\n***The jar files built by the 'jar-sign' target must***"