From 730e7fcb77d7a8c9f1770ba0f407c7306d16e4f5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 21 Mar 2021 17:14:50 +0100 Subject: gnu: simple-texlive-package: Fix shebang patching. * gnu/packages/tex.scm (simple-texlive-package)[arguments]: Copy the working directory instead of the source directory to the output. --- gnu/packages/tex.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8cf749e318..bf2e19c149 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -120,7 +120,7 @@ copied to their outputs; otherwise the TEXLIVE-BUILD-SYSTEM is used." (string-append doc "/doc"))) '()) (mkdir-p out) - (copy-recursively (assoc-ref inputs "source") out) + (copy-recursively "." out) ,@(if with-documentation? '((delete-file-recursively (string-append out "/doc"))) '()) -- cgit v1.2.3