From f1a55f8bfbaa1a68d96e229b4e73c9e9209d82cf Mon Sep 17 00:00:00 2001 From: Sriram Raman Date: Tue, 9 Jun 2009 15:08:29 -0700 Subject: [PATCH] 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 --- core/definitions.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/definitions.mk b/core/definitions.mk index f3382c3a07..eccdfc95c9 100644 --- a/core/definitions.mk +++ b/core/definitions.mk @@ -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