guix-commits
[Top][All Lists]
Advanced

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

11/14: gnu: iwd: Remove reference to %outputs.


From: guix-commits
Subject: 11/14: gnu: iwd: Remove reference to %outputs.
Date: Tue, 8 Feb 2022 07:36:51 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 0d0f2b9c358f81b6fbdc84b020b209f865646707
Author: Simon South <simon@simonsouth.net>
AuthorDate: Mon Feb 7 09:26:27 2022 -0500

    gnu: iwd: Remove reference to %outputs.
    
    * gnu/packages/networking.scm (iwd)[arguments]: Remove reference to %outputs
    by using a gexp.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/networking.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 4258a14968..ef0ae12e49 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3580,16 +3580,15 @@ powerful route filtering syntax and an easy-to-use 
configuration interface.")
      (list pkg-config python python-docutils openssl))
     (arguments
      `(#:configure-flags
-       (let ((dbus (assoc-ref %outputs "out")))
-         (list "--disable-systemd-service"
-               "--enable-external-ell"
-               "--enable-hwsim"
-               "--enable-tools"
-               "--enable-wired"
-               "--localstatedir=/var"
-               (string-append "--with-dbus-datadir=" dbus "/share/")
-               (string-append "--with-dbus-busdir="
-                              dbus "/share/dbus-1/system-services")))
+       ,#~(list "--disable-systemd-service"
+                "--enable-external-ell"
+                "--enable-hwsim"
+                "--enable-tools"
+                "--enable-wired"
+                "--localstatedir=/var"
+                (string-append "--with-dbus-datadir=" #$output "/share/")
+                (string-append "--with-dbus-busdir="
+                               #$output "/share/dbus-1/system-services"))
        #:phases
        (modify-phases %standard-phases
          (add-after 'configure 'patch-Makefile



reply via email to

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