diff options
author | Rob Herring <robh@kernel.org> | 2016-07-05 15:21:18 -0500 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-07-06 16:58:38 +0100 |
commit | d342cd34ac871b29cab709b72e9f1db1ded7e7bb (patch) | |
tree | 159e5cd1e0bfbf5fea6d73609b76c7e7e95dd4b9 /nouveau | |
parent | 7996a8707eacd59a45e7128a543393dca2776e26 (diff) |
Android: strip out header files from sources list
AOSP master now errors if LOCAL_SRC_FILES contains headers, so filter
out header files from the source lists.
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'nouveau')
-rw-r--r-- | nouveau/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nouveau/Android.mk b/nouveau/Android.mk index abc6aef7..b67d30fc 100644 --- a/nouveau/Android.mk +++ b/nouveau/Android.mk @@ -9,7 +9,7 @@ LOCAL_MODULE_TAGS := optional LOCAL_SHARED_LIBRARIES := libdrm -LOCAL_SRC_FILES := $(LIBDRM_NOUVEAU_FILES) +LOCAL_SRC_FILES := $(patsubst %.h, , $(LIBDRM_NOUVEAU_FILES)) LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) LOCAL_CFLAGS := \ |