diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-03-23 01:18:23 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:31 +0200 |
| commit | cf46fefb0bf18ffb9daf3684405814a056935fa7 (patch) | |
| tree | 8b8548db60a41b6f5718ae3435c631bbaa79c68b /gnu/packages | |
| parent | 6610c6cbfc5ab7805d9245f649ed7401598bd0a5 (diff) | |
gnu: gash-boot: Shorten symlinks.
* gnu/packages/commencement.scm (gash-boot)[arguments]: Shorten
symlinks created in ‘install-symlinks’.
Change-Id: I1300b31db615ab5fd9674c5a2d2aca1b7f600fcd
Diffstat (limited to 'gnu/packages')
| -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 79da18ed5b3..e67b33f33b5 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)))) |
