diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2014-08-25 16:26:29 -0700 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2014-08-25 16:26:29 -0700 |
commit | 85af05ae377998af37c375d7a38d10a436ebcbe9 (patch) | |
tree | 199fe478a6bdffcccc66dc56fea56f94fe8f2846 /liblog/tests | |
parent | 5a1d5a8c79d0148291700cc5773a1519f2c6d8eb (diff) | |
download | system_core-85af05ae377998af37c375d7a38d10a436ebcbe9.zip system_core-85af05ae377998af37c375d7a38d10a436ebcbe9.tar.gz system_core-85af05ae377998af37c375d7a38d10a436ebcbe9.tar.bz2 |
Fix typo: ifndef -> ifneq
Change-Id: Id71c70b6fcd2659078a19cc652fd02807372f3a0
Diffstat (limited to 'liblog/tests')
-rw-r--r-- | liblog/tests/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liblog/tests/Android.mk b/liblog/tests/Android.mk index 255dc2e..6c72138 100644 --- a/liblog/tests/Android.mk +++ b/liblog/tests/Android.mk @@ -70,7 +70,7 @@ ifneq ($(wildcard $(LOCAL_PATH)/../../../../bionic/libc/bionic/libc_logging.cpp) test_src_files += \ libc_test.cpp -ifndef ($(TARGET_USES_LOGD),false) +ifneq ($(TARGET_USES_LOGD),false) test_c_flags += -DTARGET_USES_LOGD endif |