gnu: python-gst: Fix the concatenation of install path.
Fixes a regression introduced in a5c2e7961c
.
* gnu/packages/gstreamer.scm (python-gst):
[arguments]:
<configure-flags>: Add missing leading slash.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
parent
9d25dab4db
commit
27a6e8501f
|
@ -1076,7 +1076,7 @@ given, also pass them to the build system instead of the ones used by PKG."
|
|||
#:configure-flags
|
||||
(list (string-append
|
||||
"-Dpygi-overrides-dir="
|
||||
(python:site-packages %build-inputs %outputs) "gi/overrides"))))
|
||||
(python:site-packages %build-inputs %outputs) "/gi/overrides"))))
|
||||
(native-inputs
|
||||
(list pkg-config python))
|
||||
(propagated-inputs
|
||||
|
|
Reference in New Issue