diff options
author | Simon South <simon@simonsouth.net> | 2022-02-07 09:26:27 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-02-08 13:34:03 +0100 |
commit | 0d0f2b9c358f81b6fbdc84b020b209f865646707 (patch) | |
tree | e994af0b7f4804c9fc94b7c04c35b7fa6ef02245 /gnu | |
parent | 6413eb61af04937bf6e6bf42a24642f498606053 (diff) | |
download | guix-0d0f2b9c358f81b6fbdc84b020b209f865646707.tar.gz |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 19 |
1 files 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 |