[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: guile-wisp: Remove trailing #T.
From: |
guix-commits |
Subject: |
01/03: gnu: guile-wisp: Remove trailing #T. |
Date: |
Tue, 30 Nov 2021 14:31:21 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit f7db3bf27712098001453284ac92fe089b0bd370
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Nov 30 20:17:11 2021 +0100
gnu: guile-wisp: Remove trailing #T.
* gnu/packages/guile-xyz.scm (guile-wisp)[arguments]: Remove trailing #T.
---
gnu/packages/guile-xyz.scm | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index badca40..9f0c27e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1884,13 +1884,11 @@ user which package sets would they like to install from
it.")
(modify-phases %standard-phases
(replace 'bootstrap
(lambda _
- (invoke "autoreconf" "-vif")
- #t))
+ (invoke "autoreconf" "-vif")))
(add-before 'configure 'patch-/usr/bin/env
(lambda _
(substitute* "Makefile.in"
- (("/usr/bin/env bash") (which "bash")))
- #t))
+ (("/usr/bin/env bash") (which "bash")))))
;; auto compilation breaks, but if we set HOME to /tmp,
;; that works ok
(add-before 'check 'auto-compile-hacky-workaround
@@ -1914,8 +1912,7 @@ user which package sets would they like to install from
it.")
(go (string-append object-dir base ".go")))
(invoke "guild" "compile" "-L" module-dir
file "-o" go)))
- (find-files module-dir "\\.scm$"))
- #t)))
+ (find-files module-dir "\\.scm$")))))
(add-after 'install 'install-emacs-files
(assoc-ref emacs:%standard-phases 'install))
(add-after 'install-emacs-files 'compile-emacs-files