me
/
guix
Archived
1
0
Fork 0

gnu: texlive-babel: Remove trailing #t.

* gnu/packages/tex.scm (texlive-babel)[arguments]: Remove trailing #t.
master
Ludovic Courtès 2022-05-08 12:04:05 +02:00
parent cf14b81b7e
commit 5c03615700
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 3 deletions

View File

@ -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 "../../..")))