gnu: gash-boot: Shorten symlinks.

* gnu/packages/commencement.scm (gash-boot)[arguments]: Shorten
symlinks created in ‘install-symlinks’.

Change-Id: I1300b31db615ab5fd9674c5a2d2aca1b7f600fcd
This commit is contained in:
Ludovic Courtès 2025-03-23 01:18:23 +01:00 committed by Andreas Enge
parent 6610c6cbfc
commit cf46fefb0b
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -225,10 +225,8 @@ pure Scheme to Tar and decompression in one easy step.")
(add-after 'install 'install-symlinks
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(symlink (string-append out "/bin/gash")
(string-append out "/bin/sh"))
(symlink (string-append out "/bin/gash")
(string-append out "/bin/bash"))))))))
(symlink "gash" (string-append out "/bin/sh"))
(symlink "gash" (string-append out "/bin/bash"))))))))
(inputs (list %bootstrap-guile))
(native-inputs (list bootar))))