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.
This commit is contained in:
Marius Bakke 2021-03-21 17:14:50 +01:00
parent 5e61abcaf6
commit 730e7fcb77
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -120,7 +120,7 @@ (define with-documentation?
(string-append doc "/doc"))) (string-append doc "/doc")))
'()) '())
(mkdir-p out) (mkdir-p out)
(copy-recursively (assoc-ref inputs "source") out) (copy-recursively "." out)
,@(if with-documentation? ,@(if with-documentation?
'((delete-file-recursively (string-append out "/doc"))) '((delete-file-recursively (string-append out "/doc")))
'()) '())