diff options
author | Emil Velikov <[email protected]> | 2017-03-23 18:27:29 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-24 12:02:04 +0000 |
commit | 15603055fb36a630cf3023219e9dd5c4a49c0596 (patch) | |
tree | c38f2d5e482b34fb760414e19021c6a146593fe8 /src/intel | |
parent | 43f5a2c915e9f0fb7ac048964a3b55909146f8cd (diff) |
anv: automake: ensure that the destination directory is created
Earlier commit unintentionally dropped the mkdir, as it was rebased.
Some versions of autotools will not create the output directory for
generated sources. Thus the issue went unnoticed by the original author.
Cc: Dylan Baker <[email protected]>
Cc: Steven Newbury <[email protected]>
Reported-by: Steven Newbury <[email protected]> Fixes:
Fixes: 1610b3dede1 ("anv: don't pass xmlfile via stdin anv_entrypoints_gen.py")
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/Makefile.vulkan.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am index da1ee93d91c..ba6ab4fc93f 100644 --- a/src/intel/Makefile.vulkan.am +++ b/src/intel/Makefile.vulkan.am @@ -25,6 +25,7 @@ vulkan_api_xml = $(top_srcdir)/src/vulkan/registry/vk.xml vulkan/anv_entrypoints.c: vulkan/anv_entrypoints_gen.py $(vulkan_api_xml) + $(MKDIR_GEN) $(AM_V_GEN)$(PYTHON2) $(srcdir)/vulkan/anv_entrypoints_gen.py \ --xml $(vulkan_api_xml) --outdir $(builddir)/vulkan vulkan/anv_entrypoints.h: vulkan/anv_entrypoints.c |