From e5a288c96b33b56c15ba445daf0303d4215d424a Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Mon, 15 Feb 2016 09:23:57 -0600 Subject: Fix up logd make file rules logd, the init.recovery.logd.rc, and other related files were included by default if your device configs specified TARGET_USES_LOGD := true which would be the case for any device that has a full ROM tree instead of a minimal TWRP tree. Change-Id: Ia1e55703631f0f22beab2f4d4479599b88539e1a --- Android.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Android.mk') diff --git a/Android.mk b/Android.mk index 0fb934d1a..2a91c09ef 100644 --- a/Android.mk +++ b/Android.mk @@ -425,11 +425,11 @@ endif ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) LOCAL_ADDITIONAL_DEPENDENCIES += init.recovery.usb.rc endif -ifeq ($(TARGET_USES_LOGD), true) - LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc -endif ifeq ($(TWRP_INCLUDE_LOGCAT), true) LOCAL_ADDITIONAL_DEPENDENCIES += logcat + ifeq ($(TARGET_USES_LOGD), true) + LOCAL_ADDITIONAL_DEPENDENCIES += logd libsysutils libnl init.recovery.logd.rc + endif endif # Allow devices to specify device-specific recovery dependencies ifneq ($(TARGET_RECOVERY_DEVICE_MODULES),) -- cgit v1.2.3