[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38319] [PATCH 3/4] gnu: python-pyqt: Fix output directory for plugi
From: |
Hartmut Goebel |
Subject: |
[bug#38319] [PATCH 3/4] gnu: python-pyqt: Fix output directory for plugins. |
Date: |
Fri, 22 Nov 2019 10:37:29 +0100 |
This defaults to QT_INSTALL_PLUGINS, thus we should use the same
sub-path ($out/lib/qt5/plugins) here.
* gnu/packages/qt.scm(python-pyqt)[arguments]<phases>{configure}:
Change base path for plugins.
---
gnu/packages/qt.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 5f4f29a948..ba6595cdfb 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1616,7 +1616,7 @@ module provides support functions to the automatically
generated code.")
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))
(sip (string-append out "/share/sip"))
- (plugins (string-append out "/plugins"))
+ (plugins (string-append out "/lib/qt5/plugins"))
(designer (string-append plugins "/designer"))
(qml (string-append plugins "/PyQt5"))
(python (assoc-ref inputs "python"))
--
2.21.0