[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: solfege: Remove trailing booleans.
From: |
guix-commits |
Subject: |
01/02: gnu: solfege: Remove trailing booleans. |
Date: |
Tue, 29 Mar 2022 04:59:45 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 6d0d176580c70aaf1a2c52902e7ce482ff10e096
Author: jgart <jgart@dismail.de>
AuthorDate: Fri Mar 25 21:15:38 2022 -0400
gnu: solfege: Remove trailing booleans.
* gnu/packages/music.scm (solfege): Remove trailing booleans.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/music.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 9c8203aa80..3e3829cefe 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2040,16 +2040,14 @@ Key features include:
(("/usr/bin/aplay") "aplay")
(("/usr/bin/timidity") "timidity")
(("/usr/bin/mpg123") "mpg123")
- (("/usr/bin/ogg123") "ogg123"))
- #t))
+ (("/usr/bin/ogg123") "ogg123"))))
(add-before 'build 'patch-python-shebangs
(lambda _
;; Two python scripts begin with a Unicode BOM, so patch-shebang
;; has no effect.
(substitute* '("solfege/parsetree.py"
"solfege/presetup.py")
- (("#!/usr/bin/python") (string-append "#!" (which "python"))))
- #t))
+ (("#!/usr/bin/python") (string-append "#!" (which "python"))))))
(add-before 'build 'add-sitedirs
;; .pth files are not automatically interpreted unless the
;; directories containing them are added as "sites". The
directories