From: Nicolas Dufresne Date: Tue, 11 Jul 2017 18:56:03 +0000 (-0400) Subject: meson: Fix bashcomp installation X-Git-Tag: 1.16.2~719 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5443ce69ff5c81b7947d553b4794d57dce3b0b95;p=platform%2Fupstream%2Fgstreamer.git meson: Fix bashcomp installation For some reason the double quotes ended up in the path, hence the helper where installed at "."/share/... --- diff --git a/meson.build b/meson.build index 844950c..e17df40 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')