From: Rob Herring Date: Wed, 24 Feb 2016 18:56:27 +0000 (-0600) Subject: Android: remove headers from LOCAL_SRC_FILES X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=0663edf85b8e055dfecf290afab1a15c68da961a Android: remove headers from LOCAL_SRC_FILES The Android build system now spits out warnings for header files listed in LOCAL_SRC_FILES, so strip them out. Cc: "11.1 11.2" Signed-off-by: Rob Herring Reviewed-by: Emil Velikov --- diff --git a/Android.common.mk b/Android.common.mk index 7ca989c0ab7..610b213f303 100644 --- a/Android.common.mk +++ b/Android.common.mk @@ -89,3 +89,6 @@ LOCAL_CPPFLAGS += \ ifeq ($(strip $(LOCAL_MODULE_TAGS)),) LOCAL_MODULE_TAGS := optional endif + +# Quiet down the build system and remove any .h files from the sources +LOCAL_SRC_FILES := $(patsubst %.h, , $(LOCAL_SRC_FILES))