8037483: issue with the crypto / sec zip unzipping in the jdk8 build

Reviewed-by: ihse
This commit is contained in:
Erik Joelsson 2014-03-18 12:31:16 +01:00
parent 761e2c85b3
commit cd9da7c362

View File

@ -252,7 +252,7 @@ define unzip-sec-file
$(ECHO) Unzipping $(<F)
$(MKDIR) -p $(@D)
$(RM) $@
($(CD) $(JDK_OUTPUTDIR) && $(UNZIP) $< > $@.tmp)
($(CD) $(JDK_OUTPUTDIR) && $(UNZIP) -q -o $< > $@.tmp)
$(MV) $@.tmp $@
endef