summaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2018-05-02 12:43:50 -0400
committerRob Clark <[email protected]>2018-05-02 13:57:51 -0400
commit28e410f6a58f5ff5a97b325f04ea84a959ce7130 (patch)
treec1d2a8ca77974e5edf378efc77540771ca8ba74e /src/compiler
parent97d57ef9174111bfe1fa6f85e022af5a3cf2f1ce (diff)
nir: add missing dependency in meson.build
nir_builder_opcodes.h also depends on nir_intrinsics.py for generating the system-value builders. Reported-by: Christoph Haag <[email protected]> Reported-by: Kenneth Graunke <[email protected]> Signed-off-by: Rob Clark <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/nir/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build
index 84715a58912..4fffbb7a1ee 100644
--- a/src/compiler/nir/meson.build
+++ b/src/compiler/nir/meson.build
@@ -18,7 +18,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-nir_depends = files('nir_opcodes.py')
+nir_depends = files('nir_opcodes.py', 'nir_intrinsics.py')
nir_builder_opcodes_h = custom_target(
'nir_builder_opcodes.h',