Mesa (master): android: util/format: fix include path list

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sat Nov 16 00:34:32 UTC 2019


Module: Mesa
Branch: master
Commit: 09ab297e9fc52719ae41fd50b089f8fb684c67aa
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=09ab297e9fc52719ae41fd50b089f8fb684c67aa

Author: Mauro Rossi <issor.oruam at gmail.com>
Date:   Fri Nov 15 23:54:52 2019 +0100

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 at gmail.com>

---

 src/util/Android.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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)




More information about the mesa-commit mailing list