guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: texlive-bin: Fix directory traversal.


From: guix-commits
Subject: 02/04: gnu: texlive-bin: Fix directory traversal.
Date: Tue, 4 Jan 2022 09:27:58 -0500 (EST)

rekado pushed a commit to branch wip-texlive
in repository guix.

commit 99d872ae04d50917767972b300f88e0f9179bba7
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Jan 4 15:00:32 2022 +0100

    gnu: texlive-bin: Fix directory traversal.
    
    Fixes <https://bugs.gnu.org/52979>.
    
    * gnu/packages/tex.scm (texlive-bin)[arguments]: Add build phase
    'patch-directory-traversal.
---
 gnu/packages/tex.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2705263daa..43aefd57e6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -426,6 +426,15 @@ files from LOCATIONS with expected checksum HASH.  CODE is 
not currently in use.
 
                (with-fluids ((%default-port-encoding "ISO-8859-1"))
                  (substitute-commands iso-8859-1-encoded-scripts)))))
+         ;; When ST_NLINK_TRICK is set, kpathsea attempts to avoid work when
+         ;; searching files by assuming that a directory with exactly two
+         ;; links has no subdirectories.  This assumption does not hold in our
+         ;; case, so some directories with symlinked subdirectories would not
+         ;; be traversed.
+         (add-after 'patch-scripts 'patch-directory-traversal
+           (lambda _
+             (substitute* "texk/kpathsea/config.h"
+               (("#define ST_NLINK_TRICK") ""))))
          (add-after 'check 'customize-texmf.cnf
            ;; The default texmf.cnf is provided by this package, texlive-bin.
            ;; Every variable of interest is set relatively to the GUIX_TEXMF



reply via email to

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