This is an automated email from the git hooks/post-receive script.

janneke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f817a0c  system: hurd: Add "/bin/sh" and "/usr/bin/env".
f817a0c is described below

commit f817a0c095f77ccd30a2b9e776bee9a92b1c45e6
Author: Jan (janneke) Nieuwenhuizen <[email protected]>
AuthorDate: Thu Jun 18 09:32:45 2020 +0200

    system: hurd: Add "/bin/sh" and "/usr/bin/env".
    
    * gnu/system/hurd.scm (%base-services/hurd): Add extra-special-files 
"/bin/sh"
    and "/usr/bin/env".
---
 gnu/system/hurd.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 2205def..43d98cc 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -81,7 +81,10 @@
         (service guix-service-type
                  (guix-configuration
                   (extra-options '("--disable-chroot"
-                                   "--disable-deduplication"))))))
+                                   "--disable-deduplication"))))
+        (service special-files-service-type
+                 `(("/bin/sh" ,(file-append bash "/bin/sh"))
+                   ("/usr/bin/env" ,(file-append coreutils "/bin/env"))))))
 
 (define %hurd-default-operating-system
   (operating-system

Reply via email to