meson: Fix bashcomp installation

For some reason the double quotes ended up in the path, hence
the helper where installed at "."/share/...
This commit is contained in:
Nicolas Dufresne 2017-07-11 14:56:03 -04:00
parent 4a108c7858
commit 5443ce69ff

View 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')