am 6698ebf9: Merge "Fix Darwin build caused by -Wunused-parameter."

* commit '6698ebf92857b7a390264b36603c57ae639b43a2':
  Fix Darwin build caused by -Wunused-parameter.
This commit is contained in:
Tim Murray 2014-07-25 02:20:28 +00:00 committed by Android Git Automerger
commit f2879ef614

View file

@ -66,6 +66,9 @@ LOCAL_SRC_FILES:= $(commonSources)
ifeq ($(HOST_OS), linux)
LOCAL_SRC_FILES += Looper.cpp
endif
ifeq ($(HOST_OS),darwin)
LOCAL_CFLAGS += -Wno-unused-parameter
endif
LOCAL_MODULE:= libutils
LOCAL_STATIC_LIBRARIES := liblog
LOCAL_CFLAGS += $(host_commonCflags)