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
This commit is contained in:
Sriram Raman 2009-06-09 15:08:29 -07:00
parent f4d7c620f1
commit f1a55f8bfb
1 changed files with 1 additions and 1 deletions

View File

@ -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