diff options
author | Emil Velikov <[email protected]> | 2017-02-28 14:08:17 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-02-28 14:08:17 +0000 |
commit | 3935690d585dac949b0940abd9636059e8e70f0e (patch) | |
tree | f0b2ac2838384d71a86bcb171f97838503a9442f | |
parent | 0dddad5b1bb3b05190074a71d274c04c0b5ea700 (diff) |
automake: anv: add missing include $(top_srcdir)/src/vulkan/util
Otherwise we'll fail to find the header and `make distcheck` will bail.
Fixes: e9dcb17962f ("vulkan/util: Add generator for enum_to_str functions")
Signed-off-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/intel/vulkan/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/Makefile.am b/src/intel/vulkan/Makefile.am index a7e2d8e2b4c..3cd01e4d028 100644 --- a/src/intel/vulkan/Makefile.am +++ b/src/intel/vulkan/Makefile.am @@ -50,6 +50,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/vulkan/wsi \ -I$(top_builddir)/src/vulkan/util \ + -I$(top_srcdir)/src/vulkan/util \ -I$(top_builddir)/src/compiler \ -I$(top_srcdir)/src/compiler \ -I$(top_builddir)/src/compiler/nir \ |