diff options
author | Emil Velikov <[email protected]> | 2015-02-07 19:20:16 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-02-12 13:18:52 +0000 |
commit | 556fc4b84df99a1cd4b18c11fb16f7854a948b2a (patch) | |
tree | 599cd801b2e1b2c30b5111a5ad4e357f5ebcd368 /src/glsl | |
parent | 9f7efa78a8912505dcebdb587edc504663538e3c (diff) |
nir: resolve nir.h dependency list (fix make distcheck)
Use nir/nir_opcodes.h as is (w/o the absolute path), as it is the target
name used to generate the actual file. Otherwise the target is missing,
the file won't get generated and the build will fail.
Cc: "10.5" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am index e89a9ad5d89..1e4d98fa24e 100644 --- a/src/glsl/Makefile.am +++ b/src/glsl/Makefile.am @@ -240,7 +240,7 @@ nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py $(MKDIR_P) nir; \ $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/nir/nir_opcodes_h.py > $@ -nir/nir.h: $(top_builddir)/src/glsl/nir/nir_opcodes.h +nir/nir.h: nir/nir_opcodes.h nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py $(MKDIR_P) nir; \ |