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

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

Merge "Omit module-info.class when unzipping jar files." am: 5ae64345 am:...

Merge "Omit module-info.class when unzipping jar files." am: 5ae64345 am: 3e559813 am: da8798f2
am: ab333afe

Change-Id: I30700c24c900ef7cef3f24ab0eda911e7b86c91c
parents 877a64c8 ab333afe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2183,7 +2183,7 @@ define unzip-jar-files
      echo Missing file $$f; \
      exit 1; \
    fi; \
    unzip -qo $$f -d $(2); \
    unzip -qo $$f -d $(2) -x module-info.class; \
  done
  $(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,$(hide) rm -rf $(2)/META-INF)
endef