guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/37: gnu: simple-texlive-package: Fix shebang patching.


From: guix-commits
Subject: 05/37: gnu: simple-texlive-package: Fix shebang patching.
Date: Sat, 5 Jun 2021 18:16:52 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 730e7fcb77d7a8c9f1770ba0f407c7306d16e4f5
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sun Mar 21 17:14:50 2021 +0100

    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(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 8cf749e..bf2e19c 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")))
                        '())



reply via email to

[Prev in Thread] Current Thread [Next in Thread]