mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: instantmusic: Fix build failure.
This is a followup to 6bbb37a545
.
* gnu/packages/music.scm (instantmusic): Move 'fix-file-permissions'
phase before 'install' rather than before 'check'.
This commit is contained in:
parent
3a2efbc867
commit
4b577961d7
1 changed files with 2 additions and 2 deletions
|
@ -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 @@ (define-public instantmusic
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue