From 95b467888c67faeee9e34586422f6e5bcf90b2e5 Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Fri, 6 Mar 2015 11:15:55 -0800 Subject: [PATCH] logd: build cleanup - Hard code the "auditd" event tag Change-Id: I5f76fd286628be5c0ca819e8ed775648c0d2fa44 --- logd/Android.mk | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/logd/Android.mk b/logd/Android.mk index 188511f05..127a66b31 100644 --- a/logd/Android.mk +++ b/logd/Android.mk @@ -26,7 +26,16 @@ LOCAL_SHARED_LIBRARIES := \ libcutils \ libutils -LOCAL_CFLAGS := -Werror $(shell sed -n 's/^\([0-9]*\)[ \t]*auditd[ \t].*/-DAUDITD_LOG_TAG=\1/p' $(LOCAL_PATH)/event.logtags) +# This is what we want to do: +# event_logtags = $(shell \ +# sed -n \ +# "s/^\([0-9]*\)[ \t]*$1[ \t].*/-D`echo $1 | tr a-z A-Z`_LOG_TAG=\1/p" \ +# $(LOCAL_PATH)/$2/event.logtags) +# event_flag := $(call event_logtags,auditd) +# so make sure we do not regret hard-coding it as follows: +event_flag := -DAUDITD_LOG_TAG=1003 + +LOCAL_CFLAGS := -Werror $(event_flag) include $(BUILD_EXECUTABLE)