From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53861) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iY5OC-0007hT-Ip for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iY5OB-0005YJ-Lr for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:44948) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iY5OB-0005YD-J1 for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iY5O6-0000h0-FO for guix-patches@gnu.org; Fri, 22 Nov 2019 04:38:04 -0500 Subject: [bug#38319] [PATCH 1/4] gnu: sddm: Fix output directory for QML files. References: <20191122093556.6077-1-h.goebel@crazy-compilers.com> In-Reply-To: <20191122093556.6077-1-h.goebel@crazy-compilers.com> Resent-Message-ID: From: Hartmut Goebel Date: Fri, 22 Nov 2019 10:37:27 +0100 Message-Id: <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 Path must match qtbase's native-search-path specification, otherwise it will not be picked up by other packages. * gnu/packages/display-managers.scm(sddm)[arguments]: Change value of "-DQT_IMPORTS_DIR". --- gnu/packages/display-managers.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index 0b8f742c38..21afc0ec5c 100644 --- a/gnu/packages/display-managers.scm +++ b/gnu/packages/display-managers.scm @@ -102,7 +102,7 @@ (assoc-ref %build-inputs "shadow") "/etc/login.defs") (string-append "-DQT_IMPORTS_DIR=" - (assoc-ref %outputs "out") "/qml") + (assoc-ref %outputs "out") "/lib/qt5/qml") (string-append "-DCMAKE_INSTALL_SYSCONFDIR=" (assoc-ref %outputs "out") "/etc")) #:modules ((guix build cmake-build-system) -- 2.21.0