civodul pushed a commit to branch staging
in repository guix.
commit 5c03615700ee7b4c47a463d24c910f34f109a732
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun May 8 12:04:05 2022 +0200
gnu: texlive-babel: Remove trailing #t.
* gnu/packages/tex.scm (texlive-babel)[arguments]: Remove trailing #t.
---
gnu/packages/tex.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 647229bdb8..65a3f29a7f 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3862,14 +3862,13 @@ distribution.")
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'chdir
- (lambda _ (chdir "source/latex/babel/") #t))
+ (lambda _ (chdir "source/latex/babel/")))
;; This package tries to produce babel.aux twice but refuses to
;; overwrite the first one.
(add-before 'build 'fix-ins
(lambda _
(substitute* "babel.ins"
- (("askonceonly") "askforoverwritefalse"))
- #t))
+ (("askonceonly") "askforoverwritefalse"))))
(add-before 'copy-files 'unchdir
(lambda _
(chdir "../../..")))