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

Commit 91721868 authored by Gregory Montoir's avatar Gregory Montoir
Browse files

Use Z_BEST_COMPRESSION for compress-package

Saves a few extra KBs with LOCAL_COMPRESSED_MODULE

Bug: 191841942
Bug: 282617419
Test: boot && apks uncompressed
Change-Id: I1a8c6cdfc194b68b2f2c9fb398851a7a4b7440bf
parent 10bdfb5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2862,7 +2862,7 @@ endef
define compress-package
$(hide) \
  mv $@ $@.uncompressed; \
  $(MINIGZIP) -c $@.uncompressed > $@.compressed; \
  $(MINIGZIP) -9 -c $@.uncompressed > $@.compressed; \
  rm -f $@.uncompressed; \
  mv $@.compressed $@;
endef