diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-27 22:23:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-27 22:23:51 +0200 |
commit | c10d502423b6a9bead88b562e9c7baa4bcc09c29 (patch) | |
tree | 30d5d4b9486e0cf1ff5077744be76405240786c9 /gnu | |
parent | 01f248b606dadf3a3950e06bc4a6305cfb3e452e (diff) | |
download | patches-c10d502423b6a9bead88b562e9c7baa4bcc09c29.tar patches-c10d502423b6a9bead88b562e9c7baa4bcc09c29.tar.gz |
gnu: iodine: Fix path to ifconfig.
* gnu/packages/networking.scm (iodine)[arguments]: Fix path to ifconfig.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index b786b63c20..2730f0c02e 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -417,7 +417,7 @@ and min/max network usage.") (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/tun.c" (("PATH=[^ ]* ") - (string-append (assoc-ref inputs "net-tools") "/sbin/"))))) + (string-append (assoc-ref inputs "net-tools") "/bin/"))))) (add-before 'check 'delete-failing-tests ;; Avoid https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802105. (lambda _ |