meson: Fix bashcomp installation
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 11 Jul 2017 18:56:03 +0000 (14:56 -0400)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 11 Jul 2017 18:57:36 +0000 (14:57 -0400)
For some reason the double quotes ended up in the path, hence
the helper where installed at "."/share/...

meson.build

index 844950c..e17df40 100644 (file)
@@ -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')