gnu: texlive build system: Un-dumbify a comment.

* guix/build/texlive-build-system.scm (build): Clarify a poorly explained
design choice.

Change-Id: Ida4e4ccb3934f8b5cc7a6e36e33cec7a5e5581e8
This commit is contained in:
Nicolas Goaziou 2025-02-10 11:29:23 +01:00 committed by Andreas Enge
parent fbc334928b
commit f5914d5b2e
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -214,8 +214,10 @@ runfile to replace. If a file has no matching runfile, it is ignored."
f))))
build-targets))
((directory-exists? "source")
;; Prioritize ".ins" files over ".dtx" files. There's no
;; scientific reasoning here; it just seems to work better.
;; Prioritize ".ins" files over ".dtx" files. The former only
;; generate runfiles whereas the latter usually also rebuild
;; documentation, which is not regenerated during the build process
;; as it would introduce some bootstrapping issues.
(match (find-files "source" "\\.ins$")
(() (find-files "source" "\\.dtx$"))
(files files)))