Merge "Fix Mac build." into mnc-dev

This commit is contained in:
Ying Wang 2015-05-08 03:59:15 +00:00 committed by Android (Google) Code Review
commit 1af02e6116
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ define copy-tests-in-batch
$(hide) $(foreach p, $(1),\ $(hide) $(foreach p, $(1),\
$(eval pair := $(subst :,$(space),$(p)))\ $(eval pair := $(subst :,$(space),$(p)))\
mkdir -p $(dir $(word 2,$(pair)));\ mkdir -p $(dir $(word 2,$(pair)));\
cp -rf $(word 1,$(pair)) $(word 2,$(pair));) cp -Rf $(word 1,$(pair)) $(word 2,$(pair));)
endef endef
my_package_zip := $(my_staging_dir)/$(my_package_name).zip my_package_zip := $(my_staging_dir)/$(my_package_name).zip
@ -58,5 +58,5 @@ $(my_package_zip) : $(my_built_modules)
$(call copy-tests-in-batch,$(wordlist 1001,1200,$(PRIVATE_COPY_PAIRS))) $(call copy-tests-in-batch,$(wordlist 1001,1200,$(PRIVATE_COPY_PAIRS)))
$(call copy-tests-in-batch,$(wordlist 1201,9999,$(PRIVATE_COPY_PAIRS))) $(call copy-tests-in-batch,$(wordlist 1201,9999,$(PRIVATE_COPY_PAIRS)))
$(hide) $(foreach f, $(PRIVATE_PICKUP_FILES),\ $(hide) $(foreach f, $(PRIVATE_PICKUP_FILES),\
cp -rfL $(f) $(dir $@);) cp -RfL $(f) $(dir $@);)
$(hide) cd $(dir $@) && zip -rq $(notdir $@) * $(hide) cd $(dir $@) && zip -rq $(notdir $@) *