gnu: pd: Fix indentation of phases.
* gnu/packages/music.scm (pd)[arguments]: Fix indentation.
This commit is contained in:
parent
037bf4f4a0
commit
4712cbb0c7
|
@ -1374,17 +1374,15 @@ export.")
|
||||||
`(#:tests? #f ; no "check" target
|
`(#:tests? #f ; no "check" target
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before
|
(add-before 'configure 'fix-wish-path
|
||||||
'configure 'fix-wish-path
|
(lambda _
|
||||||
(lambda _
|
(substitute* "src/s_inter.c"
|
||||||
(substitute* "src/s_inter.c"
|
((" wish ") (string-append " " (which "wish8.6") " ")))
|
||||||
((" wish ") (string-append " " (which "wish8.6") " ")))
|
(substitute* "tcl/pd-gui.tcl"
|
||||||
(substitute* "tcl/pd-gui.tcl"
|
(("exec wish ") (string-append "exec " (which "wish8.6") " ")))
|
||||||
(("exec wish ") (string-append "exec " (which "wish8.6") " ")))
|
#t))
|
||||||
#t))
|
(add-after 'unpack 'autoconf
|
||||||
(add-after
|
(lambda _ (zero? (system* "autoreconf" "-vif")))))))
|
||||||
'unpack 'autoconf
|
|
||||||
(lambda _ (zero? (system* "autoreconf" "-vfi")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
|
Loading…
Reference in New Issue