diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-22 15:28:19 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-22 17:00:56 +0300 |
commit | a6f73e53b640b311564c5a1843b1c2df574bdd43 (patch) | |
tree | 0ea9334a3ab6b33b0342ed5fe1ca9705508275c7 /android | |
parent | 4f177fbbab1619b9a2f9afa04d882c5fd415fcc0 (diff) |
Depend on the tail_end module instead
Change-Id: Icc0c17c66c6e5e2166a34e232acb69c0b434a44c
Diffstat (limited to 'android')
-rw-r--r-- | android/CustomTarget_docloader.mk | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/android/CustomTarget_docloader.mk b/android/CustomTarget_docloader.mk index 326da49e4270..57266c5a3775 100644 --- a/android/CustomTarget_docloader.mk +++ b/android/CustomTarget_docloader.mk @@ -10,15 +10,14 @@ $(eval $(call gb_CustomTarget_CustomTarget,android/docloader)) docloader_DIR := $(call gb_CustomTarget_get_workdir,android/experimental/DocumentLoader) -# Depending on sw and sc modules hopefully means that all libraries and other -# files from there (plus all those they depend on), that DocumentLoader needs -# from solver will have been built? Or should we just move the stuff from +# Depending on the tail_end module hopefully means that all libraries and +# other files that DocumentLoader needs from solver will have been built? Or +# should we just move the stuff from # android/experimental/DocumentLoader/Makefile here, and depend on them # explicitly? $(call gb_CustomTarget_get_target,android/docloader) : \ $(docloader_DIR)/done \ - $(call gb_Module_get_target,sw) \ - $(call gb_Module_get_target,sc) + $(call gb_Module_get_target,tail_end) # We know that CustomTarget_sdremote.mk is included first, so sdremote_DIR is # defined. We want that to be built completely first, so that we can |