Merge "Fix log spam in unzip-jar-files"
am: 05ecd66557

Change-Id: I44836b434fabc250ea95dd7f3e5ce3572863be44
diff --git a/core/definitions.mk b/core/definitions.mk
index 02fe82a..449ea40 100644
--- a/core/definitions.mk
+++ b/core/definitions.mk
@@ -2183,7 +2183,8 @@
       echo Missing file $$f; \
       exit 1; \
     fi; \
-    unzip -qo $$f -d $(2) -x module-info.class; \
+    unzip -qo $$f -d $(2); \
+    rm -f $(2)/module-info.class; \
   done
   $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,$(hide) rm -rf $(2)/META-INF)
 endef