[Mesa-dev] [PATCH] vulkan: Fix gen_enum_to_str in out of tree builds

Mike Lothian mike at fireburn.co.uk
Thu Feb 23 00:59:17 UTC 2017


This fixes the build for me and I've tested vulkan programs still work

Reviewed-and-Tested-by: Mike Lothian <mike at fireburn.co.uk>

On 23 February 2017 at 00:38, Dylan Baker <dylan at pnwbakers.com> wrote:
> In some configurations the util directory is created when building out
> of tree, but not others. This patch ensures that it's created.
>
> cc: Matt Turner <mattst88 at gmail.com>
> Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
> ---
>  src/vulkan/Makefile.am | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/src/vulkan/Makefile.am b/src/vulkan/Makefile.am
> index fa72d63d65..5cdffbf901 100644
> --- a/src/vulkan/Makefile.am
> +++ b/src/vulkan/Makefile.am
> @@ -5,6 +5,9 @@ noinst_LTLIBRARIES = libvulkan_wsi.la libvulkan_util.la
>  vulkan_includedir = $(includedir)/vulkan
>  vulkan_api_xml = $(top_srcdir)/src/vulkan/registry/vk.xml
>
> +MKDIR_GEN = $(AM_V_at)$(MKDIR_P) $(@D)
> +PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
> +
>  EXTRA_DIST = \
>         util/gen_enum_to_str.py
>
> @@ -13,7 +16,8 @@ BUILT_SOURCES = \
>         util/vk_enum_to_str.h
>
>  util/vk_enum_to_str.c util/vk_enum_to_str.h: util/gen_enum_to_str.py $(vulkan_api_xml)
> -       $(AM_V_GEN)$(PYTHON2) $(srcdir)/util/gen_enum_to_str.py
> +       $(MKDIR_GEN)
> +       $(PYTHON_GEN) $(srcdir)/util/gen_enum_to_str.py
>
>  libvulkan_util_la_SOURCES = $(VULKAN_UTIL_FILES)
>
> --
> 2.11.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list