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

Commit f1a55f8b authored by Sriram Raman's avatar Sriram Raman
Browse files

Fix the usual build hanging issue by using -o (overwrite without prompting) option with unzip

This should fix the common problem when googlelogin-client and google-framework are both included
parent f4d7c620
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1224,7 +1224,7 @@ define unzip-jar-files
      echo Missing file $$f; \
      exit 1; \
    fi; \
    unzip -q $$f -d $(2); \
    unzip -qo $$f -d $(2); \
    (cd $(2) && rm -rf META-INF); \
  done
endef