mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
fbc334928b
commit
f5914d5b2e
1 changed files with 4 additions and 2 deletions
|
@ -214,8 +214,10 @@ runfile to replace. If a file has no matching runfile, it is ignored."
|
||||||
f))))
|
f))))
|
||||||
build-targets))
|
build-targets))
|
||||||
((directory-exists? "source")
|
((directory-exists? "source")
|
||||||
;; Prioritize ".ins" files over ".dtx" files. There's no
|
;; Prioritize ".ins" files over ".dtx" files. The former only
|
||||||
;; scientific reasoning here; it just seems to work better.
|
;; 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$")
|
(match (find-files "source" "\\.ins$")
|
||||||
(() (find-files "source" "\\.dtx$"))
|
(() (find-files "source" "\\.dtx$"))
|
||||||
(files files)))
|
(files files)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue