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

Merge commit 'f1a55f8bfbaa1a68d96e229b4e73c9e9209d82cf'

* commit 'f1a55f8bfbaa1a68d96e229b4e73c9e9209d82cf':
  Fix the usual build hanging issue by using -o (overwrite without prompting) option with unzip
This commit is contained in:
Sriram Raman
2009-06-09 16:09:43 -07:00
committed by The Android Open Source Project

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