diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:01 +0200 |
commit | 9d0e389053663279f9ecbf273b85b0d486ab0280 (patch) | |
tree | 13de52d8d1666514d86ae638b54fcb8186121878 /gnu | |
parent | 7b7aee6af977f6720e14d6df5c1e9f9463bc266c (diff) |
gnu: pd: Remove trailing #t from phases.
* gnu/packages/music.scm (pd)[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 80842f8637..32d0889575 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2719,8 +2719,7 @@ export.") (add-before 'configure 'fix-with-path (lambda _ (substitute* "tcl/pd-gui.tcl" - (("exec wish ") (string-append "exec " (which ,wish) " "))) - #t)))))) + (("exec wish ") (string-append "exec " (which ,wish) " "))))))))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |