janneke pushed a commit to branch wip-hurd-vm in repository guix. commit 8bd569fc95596ebd2eb3eb904d664a23fee30119 Author: Jan (janneke) Nieuwenhuizen <jann...@gnu.org> AuthorDate: Sun Apr 5 11:30:47 2020 +0200
gnu: hurd: Fix PATH in MAKEDEV. * gnu/packages/hurd.scm (hurd): Substitute PATH in sutils/MAKEDEV.sh. --- gnu/packages/hurd.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index c59d321..c93a590 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -373,6 +373,9 @@ boot, since this cannot be done from GNU/Linux." (string-append "SHELL=" bash "/bin/bash\n")) (("/sbin/") (string-append out "/sbin/")) (("/libexec/") (string-append out "/libexec/"))) + (substitute* "sutils/MAKEDEV.sh" + (("^PATH=.*") + (string-append "PATH=" out "/bin:" out "/sbin\n"))) #t))) (add-after 'patch-shebangs 'patch-libexec-shebangs (lambda* (#:key inputs outputs #:allow-other-keys)