diff options
author | Ying Wang <wangying@google.com> | 2014-06-19 14:15:03 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2014-06-19 14:44:23 -0700 |
commit | 6b048ce839ce0bcbce684284f68a2f32ee9d764c (patch) | |
tree | 26c7ffb85cfb4253b22636a77d3ab17400d614df /fastboot/Android.mk | |
parent | 787a2a697e0affb6e2c5785204e70a586d5696a0 (diff) | |
download | system_core-6b048ce839ce0bcbce684284f68a2f32ee9d764c.zip system_core-6b048ce839ce0bcbce684284f68a2f32ee9d764c.tar.gz system_core-6b048ce839ce0bcbce684284f68a2f32ee9d764c.tar.bz2 |
Store libf2fs_fmt_host_dyn on the build server.
It will be dynamically loaded by fastboot.
Bug: 15731906
Change-Id: Iff6f2b745b4ffd2c5fe343160b3efb8dcd5702fa
Diffstat (limited to 'fastboot/Android.mk')
-rw-r--r-- | fastboot/Android.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/fastboot/Android.mk b/fastboot/Android.mk index 0238404..7c4a31f 100644 --- a/fastboot/Android.mk +++ b/fastboot/Android.mk @@ -75,8 +75,12 @@ endif include $(BUILD_HOST_EXECUTABLE) - -$(call dist-for-goals,dist_files sdk,$(LOCAL_BUILT_MODULE)) +my_dist_files := $(LOCAL_BUILT_MODULE) +ifeq ($(HOST_OS),linux) +my_dist_files += $(HOST_LIBRARY_PATH)/libf2fs_fmt_host_dyn$(HOST_SHLIB_SUFFIX) +endif +$(call dist-for-goals,dist_files sdk,$(my_dist_files)) +my_dist_files := ifeq ($(HOST_OS),linux) |