diff options
author | Ying Wang <wangying@google.com> | 2013-12-18 01:40:12 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-12-18 01:40:12 +0000 |
commit | 3fc636c25af0ddcce6ebe6f99a1d7ca83b84f69a (patch) | |
tree | 625913de70884e435dceb3bacc10cedc8606f922 | |
parent | 71e8a22e3478b6b4277957ef47486058a5306286 (diff) | |
parent | 17a7e2bee3f714ae9ffdc6e3bc28065a67cdde5b (diff) | |
download | build-3fc636c25af0ddcce6ebe6f99a1d7ca83b84f69a.zip build-3fc636c25af0ddcce6ebe6f99a1d7ca83b84f69a.tar.gz build-3fc636c25af0ddcce6ebe6f99a1d7ca83b84f69a.tar.bz2 |
Merge "Create the dest dir before copying over files."
-rw-r--r-- | core/dex_preopt_libdvm.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dex_preopt_libdvm.mk b/core/dex_preopt_libdvm.mk index 5c858b5..23a54e1 100644 --- a/core/dex_preopt_libdvm.mk +++ b/core/dex_preopt_libdvm.mk @@ -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) : $$(_dbj_src_jar) | $(ACP) $(DEXPREOPT) $(DEXOPT) @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),$$@) _dbj_jar := |