diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 19:11:09 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:12 +0200 |
commit | 9dbaa10aa755f33f8050082bb443d1f9eabf6e21 (patch) | |
tree | 914f69805b9072b688d900b915a5ce457cf6110f | |
parent | e1392785d5ff1a1e9e5759f521862348b751e5ce (diff) | |
download | guix-9dbaa10aa755f33f8050082bb443d1f9eabf6e21.tar.gz |
gnu: audacity: Fix build.
* gnu/package/audio.scm (audacity)[arguments]: Don't refer to nonexistent 'wrap-program' phase. Change-Id: I219afd9097ec731ba03c33a0c72bbc657a95486b
-rw-r--r-- | gnu/packages/audio.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 63fff0b352..926785e9d5 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -995,7 +995,7 @@ engineers, musicians, soundtrack editors and composers.") (lambda* (#:key inputs #:allow-other-keys) (substitute* '("libraries/lib-files/FileNames.cpp") (("\"/usr/include/linux/magic.h\"") "<linux/magic.h>")))) - (add-after 'wrap-program 'glib-or-gtk-wrap + (add-after 'install 'glib-or-gtk-wrap (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))) ;; The test suite is not "well exercised" according to the developers, ;; and fails with various errors. See |