~ruther/guix-local

4712cbb0c76190de7ff47210fac74d1f0bf69bea — Ricardo Wurmus 9 years ago 037bf4f
gnu: pd: Fix indentation of phases.

* gnu/packages/music.scm (pd)[arguments]: Fix indentation.
1 files changed, 9 insertions(+), 11 deletions(-)

M gnu/packages/music.scm
M gnu/packages/music.scm => gnu/packages/music.scm +9 -11
@@ 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)