diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-05-20 09:43:15 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-05-20 09:43:15 +0100 |
commit | 27a935a5c9af52584420d2da6d643075dc443102 (patch) | |
tree | df161294d4d816392a1202c8e84c4dbefe4b282b /Android.mk | |
parent | da69b35b1cf63d01f337ebc36aad1edee1bcc06a (diff) | |
download | art-27a935a5c9af52584420d2da6d643075dc443102.zip art-27a935a5c9af52584420d2da6d643075dc443102.tar.gz art-27a935a5c9af52584420d2da6d643075dc443102.tar.bz2 |
Fix art-host build rule.
Use HOST_CORE_IMG_OUT, now that the image is being generated in a
platform dependent directory.
Change-Id: I5509012e9ed0d745b70b2a58227213b027227c97
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -367,7 +367,7 @@ build-art-target: $(ART_TARGET_EXECUTABLES) $(ART_TARGET_GTEST_EXECUTABLES) $(TA ######################################################################## # "m art-host" for just building the files needed to run the art script .PHONY: art-host -art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_OUT_JAVA_LIBRARIES)/core.art $(HOST_OUT)/lib/libjavacore.so +art-host: $(HOST_OUT_EXECUTABLES)/art $(HOST_OUT)/bin/dalvikvm $(HOST_OUT)/lib/libart.so $(HOST_OUT)/bin/dex2oat $(HOST_CORE_IMG_OUT) $(HOST_OUT)/lib/libjavacore.so .PHONY: art-host-debug art-host-debug: art-host $(HOST_OUT)/lib/libartd.so $(HOST_OUT)/bin/dex2oatd |