diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-04-02 12:47:11 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-04-02 17:25:05 +0200 |
commit | 4712cbb0c76190de7ff47210fac74d1f0bf69bea (patch) | |
tree | e63a5e06f2eb93eb864ed36d36878f11d5d61378 /gnu | |
parent | 037bf4f4a08aca9f14007ce5f6ecb5b4a7bd7e58 (diff) | |
download | patches-4712cbb0c76190de7ff47210fac74d1f0bf69bea.tar patches-4712cbb0c76190de7ff47210fac74d1f0bf69bea.tar.gz |
gnu: pd: Fix indentation of phases.
* gnu/packages/music.scm (pd)[arguments]: Fix indentation.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index de77570c09..011346c69d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1374,17 +1374,15 @@ export.") `(#:tests? #f ; no "check" target #:phases (modify-phases %standard-phases - (add-before - 'configure 'fix-wish-path - (lambda _ - (substitute* "src/s_inter.c" - ((" wish ") (string-append " " (which "wish8.6") " "))) - (substitute* "tcl/pd-gui.tcl" - (("exec wish ") (string-append "exec " (which "wish8.6") " "))) - #t)) - (add-after - 'unpack 'autoconf - (lambda _ (zero? (system* "autoreconf" "-vfi"))))))) + (add-before 'configure 'fix-wish-path + (lambda _ + (substitute* "src/s_inter.c" + ((" wish ") (string-append " " (which "wish8.6") " "))) + (substitute* "tcl/pd-gui.tcl" + (("exec wish ") (string-append "exec " (which "wish8.6") " "))) + #t)) + (add-after 'unpack 'autoconf + (lambda _ (zero? (system* "autoreconf" "-vif"))))))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |