mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: hurd: Fix references to /bin/w.
* gnu/packages/hurd.scm (hurd): Use '/bin/w' from hurd package.
This commit is contained in:
parent
8bf8cd9b85
commit
2676579dc8
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2020 Rene Saavedra <pacoon@protonmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -413,6 +414,9 @@ (define-public hurd
|
|||
(substitute* '("startup/startup.c" "init/init.c" "config/ttys")
|
||||
(("/libexec/")
|
||||
(string-append out "/libexec/")))
|
||||
(substitute* '("utils/uptime.sh")
|
||||
(("/bin/w")
|
||||
(string-append out "/bin/w")))
|
||||
(substitute* "daemons/console-run.c"
|
||||
(("/hurd/")
|
||||
(string-append out "/hurd/")))
|
||||
|
|
Loading…
Reference in a new issue