From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53878) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iY5OD-0007ha-M6 for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iY5OC-0005Z0-NP for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:09 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:44950) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iY5OC-0005Yw-KS for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iY5OC-0000hK-Gr for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:08 -0500 Subject: [bug#38319] [PATCH 3/4] gnu: python-pyqt: Fix output directory for plugins. Resent-Message-ID: From: Hartmut Goebel Date: Fri, 22 Nov 2019 10:37:29 +0100 Message-Id: <20191122093730.6164-3-h.goebel@crazy-compilers.com> In-Reply-To: <20191122093730.6164-1-h.goebel@crazy-compilers.com> References: <20191122093730.6164-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38319@debbugs.gnu.org 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]{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