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

Commit 17f23f38 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

Change-Id: I44836b434fabc250ea95dd7f3e5ce3572863be44
parents fbc9ffd0 05ecd665
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