Mesa (master): android: radeonsi: fix build error due to wrong u_format.csv file path

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


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

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

android: radeonsi: fix build error due to wrong u_format.csv file path

GEN10_FORMAT_TABLE_INPUTS requires correction of u_format.csv file path
in order to avoid following build error:

ninja: error: 'external/mesa/util/format/u_format.csv',
needed by 'out/target/product/x86_64/gen/STATIC_LIBRARIES/libmesa_pipe_radeonsi_intermediates/radeonsi/gfx10_format_table.h',
missing and no known rule to make it

Fixes: 882ca6d ("util: Move gallium's PIPE_FORMAT utils to /util/format/")
Signed-off-by: Mauro Rossi <issor.oruam at gmail.com>

---

 src/gallium/drivers/radeonsi/Android.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/radeonsi/Android.mk b/src/gallium/drivers/radeonsi/Android.mk
index f08e759a35c..6f81f3f5346 100644
--- a/src/gallium/drivers/radeonsi/Android.mk
+++ b/src/gallium/drivers/radeonsi/Android.mk
@@ -63,7 +63,7 @@ $(intermediates)/radeonsi/si_driinfo.h: $(MERGE_DRIINFO) $(GEN_DRIINFO_INPUTS)
 	$(hide) $(MESA_PYTHON2) $(MERGE_DRIINFO) $(GEN_DRIINFO_INPUTS) > $@ || ($(RM) $@; false)
 
 GEN10_FORMAT_TABLE_INPUTS := \
-	$(MESA_TOP)/util/format/u_format.csv \
+	$(MESA_TOP)/src/util/format/u_format.csv \
 	$(MESA_TOP)/src/amd/registers/gfx10-rsrc.json
 
 GEN10_FORMAT_TABLE_DEP := \




More information about the mesa-commit mailing list