Module: Mesa Branch: 10.5 Commit: 93675c7aac899306fe1e6d26c1f7812392c6c183 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=93675c7aac899306fe1e6d26c1f7812392c6c183
Author: Emil Velikov <[email protected]> Date: Sat Feb 7 19:20:16 2015 +0000 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]> --- src/glsl/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am index e89a9ad..1e4d98f 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; \ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
