summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Rossi <[email protected]>2017-01-10 01:52:57 +0100
committerTapani Pälli <[email protected]>2017-01-11 10:16:19 +0200
commiteca79e84b90b0751baff8df18ce7069ba9c73a09 (patch)
tree6fe9d5e8e91c9e755c703afcb7c2c5881a9a031f
parente9d3cbca316c7993e1145f3254bcf17f0e643589 (diff)
android: st/mesa: fix building error in libmesa_st_mesa
Fixes building error due to dependency on nir generated headers Reviewed-by: Tapani Pälli <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r--src/mesa/Android.libmesa_st_mesa.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/Android.libmesa_st_mesa.mk b/src/mesa/Android.libmesa_st_mesa.mk
index 3905ddcf246..92df4ad2845 100644
--- a/src/mesa/Android.libmesa_st_mesa.mk
+++ b/src/mesa/Android.libmesa_st_mesa.mk
@@ -40,7 +40,9 @@ LOCAL_MODULE := libmesa_st_mesa
LOCAL_SRC_FILES := \
$(MESA_GALLIUM_FILES)
-LOCAL_GENERATED_SOURCES := $(MESA_GEN_GLSL_H)
+LOCAL_GENERATED_SOURCES := \
+ $(MESA_GEN_GLSL_H) \
+ $(MESA_GEN_NIR_H)
ifeq ($(strip $(MESA_ENABLE_ASM)),true)
ifeq ($(TARGET_ARCH),x86)