diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 17:47:07 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:11 +0200 |
commit | 0b5c8f5ea2b844a885acb5ac096ca627171422ea (patch) | |
tree | bdc81a4a56b104f747c6c2dee175718ed1b4bcd8 | |
parent | 23bed071d7d2c773263a1d210cea34a4cb0ddc8b (diff) | |
download | guix-0b5c8f5ea2b844a885acb5ac096ca627171422ea.tar.gz guix-0b5c8f5ea2b844a885acb5ac096ca627171422ea.zip |
gnu: guile-rsv: Fix build.
* gnu/packages/guile-xyz.scm (guile-rsv)[arguments]: Don't refer to
nonexistent 'install' phase.
Change-Id: I80cb124b39df495fb03384650c3125f375028c65
-rw-r--r-- | gnu/packages/guile-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 019b2abafa..e9814316d7 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -5576,7 +5576,7 @@ using a short read-capability.") (arguments (list #:phases #~(modify-phases %standard-phases - (add-after 'install 'link-and-wrap-executable + (add-after 'build 'link-and-wrap-executable (lambda _ (let* ((bin (string-append #$output "/bin")) ;; bin directory for PATH. |