summaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorbrian cully <bjc@spork.org>2026-05-15 14:50:00 -0400
committerLudovic Courtès <ludo@gnu.org>2026-06-22 11:52:40 +0200
commit9159bff062a346f97b26f19578d2fdf01d255fea (patch)
tree65769d3486a2d80a81a2eb9e8a3111186ba3490d /gnu/build
parent25857b93f3b22523bb2aac9c736363636872c4d6 (diff)
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 <ludo@gnu.org> Merges: #9109
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/hurd-boot.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index 578378bb208..67975bfa647 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
391 (to-load (find-long-option "gnu.load" args)) 391 (to-load (find-long-option "gnu.load" args))
392 (profile (string-append system "/profile")) 392 (profile (string-append system "/profile"))
393 (bin (string-append profile "/bin")) 393 (bin (string-append profile "/bin"))
394 (sbin (string-append profile "/bin"))) 394 (sbin (string-append profile "/sbin")))
395 395
396 (setenv "PATH" (string-append bin ":" sbin)) 396 (setenv "PATH" (string-append bin ":" sbin))
397 397