From 27a6e8501f0299d438916c3d11d37f18ecb4f4eb Mon Sep 17 00:00:00 2001 From: Zhu Zihao Date: Tue, 5 Apr 2022 00:17:29 +0800 Subject: gnu: python-gst: Fix the concatenation of install path. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes a regression introduced in a5c2e7961c21ef8620ce4cfb3569109fbd694e1e. * gnu/packages/gstreamer.scm (python-gst): [arguments]: : Add missing leading slash. Signed-off-by: Ludovic Courtès --- gnu/packages/gstreamer.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 8ff8e6242b..8b01c9b04b 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -1076,7 +1076,7 @@ (define-public python-gst #: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 -- cgit v1.2.3