aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-06-13 17:49:45 -0700
committerDan Willemsen <dwillemsen@google.com>2016-06-13 17:49:45 -0700
commit643a319eb73735b1d39a6875bd301df0f8fbe43f (patch)
tree1ac7adf0914fe8e2c606e5b6a7cc5530cd795bd8
parentb470b41a117a213f5b8cf2d7badcc208da001b72 (diff)
downloadwebservd-643a319eb73735b1d39a6875bd301df0f8fbe43f.tar.gz
Fix build loop
With a new build change, including yourself in your local libraries causes a dependency loop. So break that loop. Change-Id: I085d9b21921e5cd190b95bb3269b7663aba254a0
-rw-r--r--webserv_common/Android.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/webserv_common/Android.mk b/webserv_common/Android.mk
index 3e1250f..24fafb0 100644
--- a/webserv_common/Android.mk
+++ b/webserv_common/Android.mk
@@ -24,4 +24,5 @@ LOCAL_SRC_FILES := \
$(eval $(webservd_common))
$(eval $(webservd_common_libraries))
+LOCAL_STATIC_LIBRARIES := $(filter-out $(LOCAL_MODULE),$(LOCAL_STATIC_LIBRARIES))
include $(BUILD_STATIC_LIBRARY)