summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2015-12-21 16:18:26 -0800
committerColin Cross <ccross@android.com>2015-12-21 16:18:26 -0800
commitdb21988ce9fbe73680bc306929cc29b3005b2e0f (patch)
tree6810383e0a712c91edf9458524a83dca2cfb71d2
parentedbe55725fd262c3992c0e48c4fc5ce73ede2f9b (diff)
downloadextras-db21988ce9fbe73680bc306929cc29b3005b2e0f.tar.gz
libext4_utils: add dependency on libselinux
libext4_utils uses headers from libselinux, add a LOCAL_STATIC_LIBRARIES dependency. Change-Id: Ibce576b48a7f7b9a9d1a043c244d85717ce5f980
-rw-r--r--ext4_utils/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext4_utils/Android.mk b/ext4_utils/Android.mk
index c01f46ab..15abf73c 100644
--- a/ext4_utils/Android.mk
+++ b/ext4_utils/Android.mk
@@ -83,7 +83,8 @@ LOCAL_MODULE := libext4_utils_static
# Various instances of dereferencing a type-punned pointer in extent.c
LOCAL_CFLAGS += -fno-strict-aliasing
LOCAL_STATIC_LIBRARIES := \
- libsparse_static
+ libsparse_static \
+ libselinux
include $(BUILD_STATIC_LIBRARY)