From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0RZ0-0004VW-F0 for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0RYz-00047y-Bp for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43683) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0RYz-00047m-8D for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e0RYz-00076y-2K for guix-patches@gnu.org; Fri, 06 Oct 2017 08:17:09 -0400 Subject: [bug#28720] [PATCH 11/23] gnu: bluez-qt: Install udev-rules. Resent-Message-ID: From: Hartmut Goebel Date: Fri, 6 Oct 2017 14:16:24 +0200 Message-Id: <20171006121636.30904-12-h.goebel@crazy-compilers.com> In-Reply-To: <20171006121636.30904-1-h.goebel@crazy-compilers.com> References: <20171006121636.30904-1-h.goebel@crazy-compilers.com> 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: 28720@debbugs.gnu.org This requires setting UDEV_RULES_INSTALL_DIR since the CMakeLists.txt does not base this any prefix. * gnu/packages/kde-frameworks.scm (bluez-qt)[arguments]<#:configure-flags>: Remove INSTALL_UDEV_RULE=OFF, add UDEV_RULES_INSTALL_DIR. --- gnu/packages/kde-frameworks.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 3134a4c73..9bd3f74cf 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -319,7 +319,8 @@ http://freedesktop.org/wiki/Specifications/open-collaboration-services/") `(("qtbase" ,qtbase))) (arguments `(#:configure-flags - '("-DINSTALL_UDEV_RULE:BOOL=OFF") + (list (string-append + "-DUDEV_RULES_INSTALL_DIR=" %output "/lib/udev/rules.d")) #:tests? #f)) ; DBUS_FATAL_WARNINGS=0 still yields 7/8 tests failing (home-page "https://community.kde.org/Frameworks") (synopsis "QML wrapper for BlueZ") -- 2.13.5