diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-19 15:18:43 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:17 +0200 |
commit | b287e368defc9e69ea0c011327c32c7786ca7929 (patch) | |
tree | 27a9d420b6c28b300d067c8a4ac1c528c6fc4c13 | |
parent | a74743cd1f0bdde638c537d7bcdbe5f5a26db03d (diff) | |
download | guix-b287e368defc9e69ea0c011327c32c7786ca7929.tar.gz guix-b287e368defc9e69ea0c011327c32c7786ca7929.zip |
gnu: texlive-musixtnt: Fix build.
* gnu/packages/tex.scm (texlive-musixtnt)[arguments]: Don't refer to
nonexistent 'unpack-prerex-source' phase.
Change-Id: I38e9e24dcf0bb7583f42b6dd1c4647a648f89445
-rw-r--r-- | gnu/packages/tex.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3716d6989a..70af0ee83f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -22606,7 +22606,7 @@ the older (Type 1 fonts only) bundle @code{musixtex-t1fonts} obsolete.") ;; Tarball includes a release date that we ignore. (first (find-files ".." "^musixtnt-.*\\.tar.gz")) "--strip-components=1")))) - (add-after 'unpack-prerex-source 'build-msxlint + (add-after 'build 'build-msxlint (lambda args (with-directory-excursion "build" (for-each (lambda (phase) |