From 9c1d5b76c70ebf9942f6bb891677d260fe16cb62 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sun, 4 Oct 2020 21:58:08 +1100 Subject: [PATCH] guix: qt-build-system: Fix search-path wrapping. * guix/build/qt-build-system.scm: (variables-for-wrapping): Modify qt-build-system's wrap-all-programs phase to prefix all wrapped search-path variables instead of overwriting them with =. This allows Qt applications to find plugins available in the environment. --- guix/build/qt-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build/qt-build-system.scm b/guix/build/qt-build-system.scm index 005157b0a4..93f512b5d6 100644 --- a/guix/build/qt-build-system.scm +++ b/guix/build/qt-build-system.scm @@ -60,7 +60,7 @@ (lambda (var-to-wrap) (not (null? (last var-to-wrap)))) (map (lambda (var-spec) - `(,(first var-spec) = ,(collect-sub-dirs base-directories (last var-spec)))) + `(,(first var-spec) prefix ,(collect-sub-dirs base-directories (last var-spec)))) (list ;; these shall match the search-path-specification for Qt and KDE ;; libraries -- 2.28.0