guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9159bff062a346f97b26f19578d2fdf01d255fea
Author: brian cully <[email protected]>
AuthorDate: Fri May 15 14:50:00 2026 -0400
system: hurd-boot: Put the profile’s ‘sbin’ in $PATH for boot.
* gnu/build/hurd-boot.scm (boot-hurd-system): put the profile's sbin in the
path.
Change-Id: I7d640800bbb42d138713def0902d7de5511bfe03
Signed-off-by: Ludovic Courtès <[email protected]>
Merges: #9109
---
gnu/build/hurd-boot.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index 578378bb20..67975bfa64 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -391,7 +391,7 @@ XXX TODO: use Linux xattr/setxattr to remove (settrans in)
/libexec/RUNSYSTEM
(to-load (find-long-option "gnu.load" args))
(profile (string-append system "/profile"))
(bin (string-append profile "/bin"))
- (sbin (string-append profile "/bin")))
+ (sbin (string-append profile "/sbin")))
(setenv "PATH" (string-append bin ":" sbin))