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
|
@ -17,7 +17,7 @@
|
||||||
;;; Copyright © 2018 nee <nee.git@hidamari.blue>
|
;;; Copyright © 2018 nee <nee.git@hidamari.blue>
|
||||||
;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at>
|
;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at>
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; 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 © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
||||||
;;; Copyright © 2019 Gabriel Hondet <gabrielhondet@gmail.com>
|
;;; Copyright © 2019 Gabriel Hondet <gabrielhondet@gmail.com>
|
||||||
;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
|
;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
|
||||||
|
@ -2794,7 +2794,7 @@ websites such as Libre.fm.")
|
||||||
(add-before 'build 'change-directory
|
(add-before 'build 'change-directory
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "instantmusic-0.1") #t))
|
(chdir "instantmusic-0.1") #t))
|
||||||
(add-before 'check 'fix-file-permissions
|
(add-before 'install 'fix-file-permissions
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Fix some read-only files that would cause a build failure
|
;; Fix some read-only files that would cause a build failure
|
||||||
(for-each (cut chmod <> #o644)
|
(for-each (cut chmod <> #o644)
|
||||||
|
|
Loading…
Reference in New Issue