aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-08-16 16:02:59 -0700
committerDan Willemsen <dwillemsen@google.com>2016-08-16 16:16:22 -0700
commited06fc8bc476abd0bb4279b855517fec6820f698 (patch)
tree97d2746c8b0255f1661a69ef517a23e35f2fbe7d
parent31e24e118fb861a43121dcb0efd1f88606423206 (diff)
downloadvalgrind-ed06fc8bc476abd0bb4279b855517fec6820f698.tar.gz
Mark default.supp as ETC instead of SHARED_LIBRARY
It's not a shared library, but a text file that will be installed in a subdirectory under lib/... I'm improving the sanity checks in the build system that shared libraries are usable, and this one is not, since it's not a library at all. Change-Id: I5d1731b96c0b32603f5c0b4252e9396d4407a980
-rw-r--r--Android.mk6
1 files changed, 2 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk
index f105db4dd..6117e3ea4 100644
--- a/Android.mk
+++ b/Android.mk
@@ -613,9 +613,8 @@ endif
# Copy prebuilt suppressions
include $(CLEAR_VARS)
LOCAL_MODULE := default.supp
-LOCAL_MODULE_CLASS := SHARED_LIBRARIES
+LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(PRODUCT_OUT)$(vg_target_module_path)
-LOCAL_STRIP_MODULE := false
LOCAL_SRC_FILES := bionic.supp
include $(BUILD_PREBUILT)
@@ -624,9 +623,8 @@ ifeq ($(HOST_OS), linux)
include $(CLEAR_VARS)
LOCAL_IS_HOST_MODULE := true
LOCAL_MODULE := default.supp
-LOCAL_MODULE_CLASS := SHARED_LIBRARIES
+LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(HOST_OUT_SHARED_LIBRARIES)/valgrind
-LOCAL_STRIP_MODULE := false
LOCAL_SRC_FILES := bionic.supp
include $(BUILD_PREBUILT)