libc: Replace a reference to TARGET_BUILD_TYPE with DEBUG_BIONIC_LIBC

We're soon going to stop using TARGET_BUILD_TYPE==debug to debug
native modules.

Signed-off-by: Dave Bort <dbort@android.com>
This commit is contained in:
Dave Bort 2009-04-23 15:50:03 -07:00
parent 61663573dd
commit d2c9dcc926

View File

@ -338,7 +338,7 @@ libc_common_cflags := \
-DINET6 \
-I$(LOCAL_PATH)/private \
ifeq ($(TARGET_BUILD_TYPE),debug)
ifeq ($(strip $(DEBUG_BIONIC_LIBC)),true)
libc_common_cflags += -DDEBUG
endif