andreas pushed a commit to branch core-packages-team
in repository guix.
commit 93c1408840cd6b013d6843cfe5a9ec43753e3be6
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun Mar 23 01:18:23 2025 +0100
gnu: gash-boot: Shorten symlinks.
* gnu/packages/commencement.scm (gash-boot)[arguments]: Shorten
symlinks created in ‘install-symlinks’.
Change-Id: I1300b31db615ab5fd9674c5a2d2aca1b7f600fcd
---
gnu/packages/commencement.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index ef9c1ecd58..35d14bd953 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -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))))