guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: bluez-qt: Remove reference to '%output'.


From: guix-commits
Subject: 04/07: gnu: bluez-qt: Remove reference to '%output'.
Date: Sat, 27 Nov 2021 05:51:24 -0500 (EST)

civodul pushed a commit to branch core-updates-frozen
in repository guix.

commit 7fa47c07168fac489224b0b5e56d43b8e7cf8632
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Nov 27 11:31:12 2021 +0100

    gnu: bluez-qt: Remove reference to '%output'.
    
    * gnu/packages/kde-frameworks.scm (bluez-qt)[arguments]: Replace
    reference to '%output' by a gexp.
---
 gnu/packages/kde-frameworks.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index fe343b1..9b0264e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -33,6 +33,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix utils)
+  #:use-module (guix gexp)
   #:use-module (gnu packages)
   #:use-module (gnu packages acl)
   #:use-module (gnu packages admin)
@@ -294,12 +295,12 @@ 
http://freedesktop.org/wiki/Specifications/open-collaboration-services/";)
      ;; TODO: qtdeclarative (yields one failing test)
      `(("qtbase" ,qtbase-5)))
     (arguments
-     `(#:configure-flags
-       (list (string-append
-              "-DUDEV_RULES_INSTALL_DIR=" %output "/lib/udev/rules.d"))
-       ;; TODO: Make tests pass: DBUS_FATAL_WARNINGS=0 still yields 7/8 tests
-       ;; failing.  When running after install, tests hang.
-       #:tests? #f))
+     (list #:configure-flags
+           #~(list (string-append
+                    "-DUDEV_RULES_INSTALL_DIR=" #$output "/lib/udev/rules.d"))
+           ;; TODO: Make tests pass: DBUS_FATAL_WARNINGS=0 still yields 7/8 
tests
+           ;; failing.  When running after install, tests hang.
+           #:tests? #f))
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "QML wrapper for BlueZ")
     (description "bluez-qt is a Qt-style library for accessing the bluez



reply via email to

[Prev in Thread] Current Thread [Next in Thread]