summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-02-21 15:58:51 +0100
committerZheng Junjie <z572@z572.online>2026-06-20 23:59:06 +0800
commitd2efac52e5745711d6acded79f40095b3eb81644 (patch)
tree984547fec33953fe1bf56ba0cd03a8dcc64aff80
parente1ed62527e1f15f5858b8b5e5acd910f27a10509 (diff)
gnu: bash-final: Improve style.
* gnu/packages/commencement.scm (bash-final)[arguments]: Improve style, explicit disallowed-reference. Change-Id: I2979ea3c8c29b9a9707a59395dd8f4623fc27a13 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/commencement.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 6f3ce979da2..0ae48080765 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3440,12 +3440,10 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
3440 (source (bootstrap-origin (package-source bash))) 3440 (source (bootstrap-origin (package-source bash)))
3441 (inputs (%boot3-inputs)) 3441 (inputs (%boot3-inputs))
3442 (arguments 3442 (arguments
3443 `(#:implicit-inputs? #f 3443 (cons* #:implicit-inputs? #f
3444 #:guile ,%bootstrap-guile 3444 #:guile %bootstrap-guile
3445 3445 #:disallowed-references (list %bootstrap-coreutils&co)
3446 #:disallowed-references ,(assoc-ref (%boot3-inputs) "coreutils&co") 3446 (package-arguments bash))))))
3447
3448 ,@(package-arguments bash))))))
3449 3447
3450(define (%boot4-inputs) 3448(define (%boot4-inputs)
3451 ;; Now use the final Bash. 3449 ;; Now use the final Bash.