From 5443ce69ff5c81b7947d553b4794d57dce3b0b95 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 11 Jul 2017 14:56:03 -0400 Subject: [PATCH] meson: Fix bashcomp installation For some reason the double quotes ended up in the path, hence the helper where installed at "."/share/... --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 844950c0a9..e17df40d02 100644 --- a/meson.build +++ b/meson.build @@ -398,7 +398,7 @@ if bashcomp_found pkgconfig = find_program('pkg-config') runcmd = run_command(pkgconfig, - '--define-variable=prefix="."', + '--define-variable=prefix=.', '--variable=completionsdir', 'bash-completion') @@ -410,7 +410,7 @@ if bashcomp_found endif runcmd = run_command(pkgconfig, - '--define-variable=prefix="."', + '--define-variable=prefix=.', '--variable=helpersdir', 'bash-completion')