Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 296bb2af authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android Git Automerger
Browse files

am c50f767e: Merge "logd: build cleanup"

* commit 'c50f767e':
  logd: build cleanup
parents 1d9f784f c50f767e
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -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)