diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-03-23 01:18:23 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-03-31 10:48:06 +0200 |
commit | 9df8028be9cf255fd42aeee62628f4f6cbe67f19 (patch) | |
tree | d0c836caee900af8bdd00627adc67d94e266d5f0 | |
parent | a54f154ba47460c3e336bd6e703e34892267e43b (diff) |
gnu: gash-boot: Shorten symlinks.
* gnu/packages/commencement.scm (gash-boot)[arguments]: Shorten
symlinks created in ‘install-symlinks’.
Change-Id: I1300b31db615ab5fd9674c5a2d2aca1b7f600fcd
-rw-r--r-- | gnu/packages/commencement.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 3304b57c4d..9f4c0df7ba 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)))) |