summaryrefslogtreecommitdiffstats
path: root/src/broadcom/qpu
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-10-20 17:14:52 -0700
committerEric Anholt <[email protected]>2017-10-20 17:16:00 -0700
commit48615d1ead9ae039b6b8a6b794d5a63d6514b90e (patch)
tree6b87acef702952dc62b372494e1008099aefc6e2 /src/broadcom/qpu
parent07bfdb478bf844a0ac9cf3679f51f83c4abea5a1 (diff)
meson: Fix vc5 deps on the XML-generated headers.
I typoed and was depending on v3d_xml.h (the gzipped xml)_, not on the v3d_packet_v33_pack.h that the compiler and QPU packing actually use.
Diffstat (limited to 'src/broadcom/qpu')
-rw-r--r--src/broadcom/qpu/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/broadcom/qpu/meson.build b/src/broadcom/qpu/meson.build
index ca90aa23aa8..8178ddbd53b 100644
--- a/src/broadcom/qpu/meson.build
+++ b/src/broadcom/qpu/meson.build
@@ -25,7 +25,7 @@ libbroadcom_qpu_files = files(
)
libbroadcom_qpu = static_library(
- ['broadcom_qpu', v3d_xml_h],
+ ['broadcom_qpu', v3d_xml_pack],
libbroadcom_qpu_files,
include_directories : [inc_common, inc_broadcom],
c_args : [c_vis_args, no_override_init_args],