Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1617415 authored by Tobias Thierer's avatar Tobias Thierer Committed by android-build-merger
Browse files

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

am: 17f23f38

Change-Id: Id49b99ce742c23fb49db0231b3212a7a50c69756
parents 3faefab6 17f23f38
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2183,7 +2183,8 @@ define unzip-jar-files
      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