mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-09 05:11:53 +00:00
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:
parent
4a108c7858
commit
5443ce69ff
1 changed files with 2 additions and 2 deletions
|
@ -398,7 +398,7 @@ if bashcomp_found
|
||||||
pkgconfig = find_program('pkg-config')
|
pkgconfig = find_program('pkg-config')
|
||||||
|
|
||||||
runcmd = run_command(pkgconfig,
|
runcmd = run_command(pkgconfig,
|
||||||
'--define-variable=prefix="."',
|
'--define-variable=prefix=.',
|
||||||
'--variable=completionsdir',
|
'--variable=completionsdir',
|
||||||
'bash-completion')
|
'bash-completion')
|
||||||
|
|
||||||
|
@ -410,7 +410,7 @@ if bashcomp_found
|
||||||
endif
|
endif
|
||||||
|
|
||||||
runcmd = run_command(pkgconfig,
|
runcmd = run_command(pkgconfig,
|
||||||
'--define-variable=prefix="."',
|
'--define-variable=prefix=.',
|
||||||
'--variable=helpersdir',
|
'--variable=helpersdir',
|
||||||
'bash-completion')
|
'bash-completion')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue