diff options
author | Dave Bort <dbort@android.com> | 2009-04-23 15:50:03 -0700 |
---|---|---|
committer | Dave Bort <dbort@android.com> | 2009-04-24 14:13:53 -0700 |
commit | d2c9dcc9265e66f6432ec39dcc7378b944449e60 (patch) | |
tree | 5813f5bf0b7392f2b5d852240b455fd311df5fef /libc | |
parent | 61663573dd7de5ed6799af7f3df1940add84718b (diff) | |
download | bionic-d2c9dcc9265e66f6432ec39dcc7378b944449e60.zip bionic-d2c9dcc9265e66f6432ec39dcc7378b944449e60.tar.gz bionic-d2c9dcc9265e66f6432ec39dcc7378b944449e60.tar.bz2 |
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>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/Android.mk b/libc/Android.mk index 330802a..333dd1e 100644 --- a/libc/Android.mk +++ b/libc/Android.mk @@ -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 |