From 2b677cff7d3cbc28e9f7f5da41ae52d32da3a674 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 8 Feb 2022 12:19:33 -0500 Subject: gnu: python-pkgconfig: Fix path to find pkg-config. * gnu/packages/python-xyz.scm (python-pkgconfig)[arguments]: Fix the substitution so the package refers to pkg-config. --- gnu/packages/python-xyz.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d7e816415d..537a2eef35 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15488,9 +15488,8 @@ (define-public python-pkgconfig ;; Hard-code the path to pkg-config. (lambda _ (substitute* "pkgconfig/pkgconfig.py" - (("cmd = 'pkg-config") - (string-append "cmd = '" (which "pkg-config")))) - #t)) + (("'pkg-config'") + (string-append "'" (which "pkg-config") "'"))))) (replace 'check (lambda _ (invoke "nosetests" "test.py")))))) -- cgit v1.2.3