diff options
author | Emil Velikov <[email protected]> | 2017-01-17 19:48:37 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-01-18 13:41:32 +0000 |
commit | 8d1712a065d5e55310a5c39a8914d714d845f6ce (patch) | |
tree | 1b2091a94afe477317fd29755cdb39669132a07b /src | |
parent | 2d14ae6bea4af444ca77e9f6e7d3898a3f39b2d3 (diff) |
vulkan: automake: do not use EXTRA_DIST in a conditional
Otherwise the file might not end up in the tarball.
Fixes: dbd677efb42 "vulkan: add API registry"
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f1fe5157b0a..12e5dcdb12a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -118,8 +118,8 @@ endif if HAVE_VULKAN_COMMON SUBDIRS += vulkan/wsi -EXTRA_DIST += vulkan/registry/vk.xml endif +EXTRA_DIST += vulkan/registry/vk.xml ## Requires the i965 compiler (part of mesa) and wayland-drm if HAVE_INTEL_VULKAN |