Merge "Create the dest dir before copying over files."

This commit is contained in:
Ying Wang 2013-12-18 01:40:12 +00:00 committed by Gerrit Code Review
commit 3fc636c25a
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javali
$$(_dbj_odex): PRIVATE_DBJ_JAR := $$(_dbj_jar) $$(_dbj_odex): PRIVATE_DBJ_JAR := $$(_dbj_jar)
$$(_dbj_odex) : $$(_dbj_src_jar) | $(ACP) $(DEXPREOPT) $(DEXOPT) $$(_dbj_odex) : $$(_dbj_src_jar) | $(ACP) $(DEXPREOPT) $(DEXOPT)
@echo "Dexpreopt Boot Jar: $$@" @echo "Dexpreopt Boot Jar: $$@"
$(hide) $(ACP) -fp $$< $$(PRIVATE_DBJ_JAR) $(hide) mkdir -p $$(dir $$(PRIVATE_DBJ_JAR)) && $(ACP) -fp $$< $$(PRIVATE_DBJ_JAR)
$$(call dexopt-one-file,$$(PRIVATE_DBJ_JAR),$$@) $$(call dexopt-one-file,$$(PRIVATE_DBJ_JAR),$$@)
_dbj_jar := _dbj_jar :=