On 24/01/2018 19:35, Dylan Baker wrote:
v2: - Also fix drirc install pathFixes: d1992255bb29 ("meson: Add build Intel "anv" vulkan driver") Reported-by: Marc Dietrich <[email protected]> Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> (v1) --- src/util/meson.build | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/util/meson.build b/src/util/meson.build index fa591c92e56..4d34d578a25 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -83,7 +83,9 @@ files_mesa_util = files( 'u_vector.h', )-install_data('drirc', install_dir : get_option('sysconfdir'))+sysdir = join_paths(get_option('prefix'), get_option('sysconfdir')) + +install_data('drirc', install_dir : sysdir)
Hmm.. I think this would be a meson bug if this is needed. the path given to install_dir: is relative to the prefix, unless absolute.
(see the last paragraph of http://mesonbuild.com/Installing.html#installing, although this could all be much better documented...)
_______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
