From e7f1e1a78d6e4fea0f06a57c93957a6577ed23ab Mon Sep 17 00:00:00 2001 From: Simon South Date: Sat, 22 Jan 2022 18:19:23 -0500 Subject: [PATCH] gnu: texlive-psnfss: Do not return #t from custom phase. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/tex.scm (texlive-psnfss)[arguments]<#:phases>: Remove trailing #t from "chdir" phase. Signed-off-by: Ludovic Courtès --- gnu/packages/tex.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")