commit | 05ecd66557bebaaaa854f15693dbef214e3d8927 | [log] [tgz] |
---|---|---|
author | Tobias Thierer <tobiast@google.com> | Wed Aug 16 09:54:46 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Aug 16 09:54:46 2017 +0000 |
tree | 6fb36164771a15f9415a5c9ea959ca6fef1d265d | |
parent | 14e5c5975cc718deae43210e55849babb45c5bbe [diff] | |
parent | 341ccb61617809e9d64377b297308b2b2be500bd [diff] |
Merge "Fix log spam in unzip-jar-files"
diff --git a/core/definitions.mk b/core/definitions.mk index 2136eaf..d868b63 100644 --- a/core/definitions.mk +++ b/core/definitions.mk
@@ -2175,7 +2175,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