summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon South <simon@simonsouth.net>2022-01-22 18:19:23 -0500
committerLudovic Courtès <ludo@gnu.org>2022-03-28 09:32:35 +0200
commite7f1e1a78d6e4fea0f06a57c93957a6577ed23ab (patch)
tree2f249c51391f205bea18f2c005e10861e74a8fa6
parenta59afdc92e8d29edf2cb2193f967715e46c885c7 (diff)
gnu: texlive-psnfss: Do not return #t from custom phase.
* gnu/packages/tex.scm (texlive-psnfss)[arguments]<#:phases>: Remove trailing #t from "chdir" phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/tex.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1c8c1f61a8..165a2b7181 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4533,7 +4533,7 @@ language that is written in a Cyrillic alphabet.")
`(modify-phases ,phases
(add-after 'unpack 'chdir
(lambda _
- (chdir "source/latex/psnfss") #t))))))
+ (chdir "source/latex/psnfss")))))))
(native-inputs
(list texlive-cm))
(home-page "https://www.ctan.org/pkg/psnfss")