summaryrefslogtreecommitdiff
path: root/src/util/Android.mk
diff options
context:
space:
mode:
authorMauro Rossi <issor.oruam@gmail.com>2019-11-15 23:54:52 +0100
committerMauro Rossi <issor.oruam@gmail.com>2019-11-16 00:06:31 +0100
commit09ab297e9fc52719ae41fd50b089f8fb684c67aa (patch)
tree40cfe7df7ae5626abbfdf4085d33860fa9320cbb /src/util/Android.mk
parent3cd522c70a87400f88b5315a992404947b947151 (diff)
android: util/format: fix include path list
To avoid following building error: out/target/product/x86_64/obj_x86/STATIC_LIBRARIES/libmesa_util_intermediates/format/u_format_table.c:30:10: fatal error: 'u_format.h' file not found ^~~~~~~~~~~~ 1 error generated. Fixes: 882ca6d ("util: Move gallium's PIPE_FORMAT utils to /util/format/") Signed-off-by: Mauro Rossi <issor.oruam@gmail.com>
Diffstat (limited to 'src/util/Android.mk')
-rw-r--r--src/util/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/Android.mk b/src/util/Android.mk
index 9addbb8694b..0bf90910998 100644
--- a/src/util/Android.mk
+++ b/src/util/Android.mk
@@ -39,7 +39,8 @@ LOCAL_C_INCLUDES := \
$(MESA_TOP)/src/mesa \
$(MESA_TOP)/src/mapi \
$(MESA_TOP)/src/gallium/include \
- $(MESA_TOP)/src/gallium/auxiliary
+ $(MESA_TOP)/src/gallium/auxiliary \
+ $(MESA_TOP)/src/util/format
# If Android version >=8 MESA should static link libexpat else should dynamic link
ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 27; echo $$?), 0)