aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMauro Rossi <[email protected]>2020-02-29 11:33:49 +0100
committermaurossi <[email protected]>2020-03-03 21:32:26 +0000
commita933934efbf343b6df3ea65ac70545bf200986ef (patch)
treefa6e90f0a36fd7b096d56517a394bb43f8d1a90c /src
parentaea8c9c7b1fb329a7f7d43182c054bf3b67232f3 (diff)
android: gallium/auxiliary: fix "Unused source files" in tesselator
Avoids the following Android Build System error: FAILED: build/make/core/binary.mk:1245: error: external/mesa/src/gallium/auxiliary/Android.mk: libmesa_gallium: Unused source files: tessellator/tessellator.hpp 10:24:30 ckati failed with: exit status 1 Fixes: bd0188f ("gallium/auxiliary: add the microsoft tessellator and a pipe wrapper.") Signed-off-by: Mauro Rossi <[email protected]> Acked-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/Android.mk b/src/gallium/auxiliary/Android.mk
index 7e8b2d31e16..2c3f813ac6e 100644
--- a/src/gallium/auxiliary/Android.mk
+++ b/src/gallium/auxiliary/Android.mk
@@ -28,8 +28,9 @@ include $(LOCAL_PATH)/Makefile.sources
include $(CLEAR_VARS)
+# filter-out tessellator/tessellator.hpp to avoid "Unused source files" error
LOCAL_SRC_FILES := \
- $(C_SOURCES) \
+ $(filter-out tessellator/tessellator.hpp, $(C_SOURCES)) \
$(NIR_SOURCES) \
$(RENDERONLY_SOURCES) \
$(VL_STUB_SOURCES)