diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-09-22 21:27:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-22 21:27:44 +0200 |
commit | 4b577961d736d53063022d58483f0200ef860b2d (patch) | |
tree | 9feeaaf0bd7c395180a1636810418037b7d3f1be /gnu | |
parent | 3a2efbc8670f72a524cc7290e11559cdb42852a4 (diff) | |
download | guix-4b577961d736d53063022d58483f0200ef860b2d.tar.gz guix-4b577961d736d53063022d58483f0200ef860b2d.zip |
gnu: instantmusic: Fix build failure.
This is a followup to 6bbb37a545912c6bb2513ee08587ee4fe39cc330.
* gnu/packages/music.scm (instantmusic): Move 'fix-file-permissions'
phase before 'install' rather than before 'check'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index b81c2cb782..1f6835f66c 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2018 nee <nee.git@hidamari.blue> ;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at> ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz> -;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de> ;;; Copyright © 2019 Gabriel Hondet <gabrielhondet@gmail.com> ;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si> @@ -2794,7 +2794,7 @@ websites such as Libre.fm.") (add-before 'build 'change-directory (lambda _ (chdir "instantmusic-0.1") #t)) - (add-before 'check 'fix-file-permissions + (add-before 'install 'fix-file-permissions (lambda _ ;; Fix some read-only files that would cause a build failure (for-each (cut chmod <> #o644) |