fix typo in makefile LOCAL_CFLAGS was spelled LOCAL_CLFAGS

Change-Id: I58b96d28f608ce16fcad5ed0efb887e582779e03
This commit is contained in:
Mathias Agopian 2012-06-18 17:27:56 -07:00
parent db403e8ff0
commit 5df996211d
2 changed files with 8 additions and 6 deletions

View File

@ -51,7 +51,7 @@ LOCAL_SHARED_LIBRARIES := \
# this is only needed for DDMS debugging
ifneq ($(TARGET_BUILD_PDK),true)
LOCAL_SHARED_LIBRARIES += libdvm libandroid_runtime
LOCAL_CLFAGS += -DDDMS_DEBUGGING
LOCAL_CFLAGS += -DDDMS_DEBUGGING
LOCAL_SRC_FILES += DdmConnection.cpp
endif

View File

@ -118,6 +118,8 @@ void SurfaceFlinger::init()
if (mDebugDDMS) {
DdmConnection::start(getServiceName());
}
#else
#warning "DDMS_DEBUGGING disabled"
#endif
ALOGI_IF(mDebugRegion, "showupdates enabled");