summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/etnaviv
diff options
context:
space:
mode:
authorStuart Young <cefiar@gmail.com>2018-05-17 03:01:43 +1000
committerChristian Gmeiner <christian.gmeiner@gmail.com>2018-05-16 19:36:10 +0200
commitf806cc9eb6be1a84a9987b142e7fce1ec2cb7973 (patch)
treedf474120f456ea9d3bd6780106ab2bce268ba11c /src/gallium/drivers/etnaviv
parent71892fbe194d543fbed88ee0c68c2402f6e47a65 (diff)
etnaviv: Fix missing rnndb file in tarballs
Seems that when the rnndb files for etniviv were updated/included back in Nov 2017, hw/texdesc_3d.xml.h was missed from Makefile.sources and meson.build. This was all during the conversion to meson, so it apears to have slipped through the cracks. As such, this file has been missing from the official tarballs since inclusion in Mesa, so the git trees and tarballs differ. Found due to lintian errors in the Debian packages. Fixes: f1e1c60ff6 ("etnaviv: Update from rnndb") Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Diffstat (limited to 'src/gallium/drivers/etnaviv')
-rw-r--r--src/gallium/drivers/etnaviv/Makefile.sources1
-rw-r--r--src/gallium/drivers/etnaviv/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/etnaviv/Makefile.sources b/src/gallium/drivers/etnaviv/Makefile.sources
index 05df2d9c5fb..0b208122999 100644
--- a/src/gallium/drivers/etnaviv/Makefile.sources
+++ b/src/gallium/drivers/etnaviv/Makefile.sources
@@ -6,6 +6,7 @@ C_SOURCES := \
hw/state_3d.xml.h \
hw/state_blt.xml.h \
hw/state.xml.h \
+ hw/texdesc_3d.xml.h \
\
etnaviv_asm.c \
etnaviv_asm.h \
diff --git a/src/gallium/drivers/etnaviv/meson.build b/src/gallium/drivers/etnaviv/meson.build
index 48e99d28c89..1733024ac98 100644
--- a/src/gallium/drivers/etnaviv/meson.build
+++ b/src/gallium/drivers/etnaviv/meson.build
@@ -26,6 +26,7 @@ files_etnaviv = files(
'hw/state_3d.xml.h',
'hw/state_blt.xml.h',
'hw/state.xml.h',
+ 'hw/texdesc_3d.xml.h',
'etnaviv_asm.c',
'etnaviv_asm.h',
'etnaviv_blend.c',