mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
build-system: texlive: Only make a union of directories.
* guix/build/texlive-build-system.scm (configure): Filter the input directories to ensure that source tarballs are excluded.
This commit is contained in:
parent
c5a8ecb6d3
commit
82af2c2f0f
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ (define* (configure #:key inputs #:allow-other-keys)
|
|||
;; Build a modifiable union of all inputs (but exclude bash)
|
||||
(match inputs
|
||||
(((names . directories) ...)
|
||||
(union-build out directories
|
||||
(union-build out (filter directory-exists? directories)
|
||||
#:create-all-directories? #t
|
||||
#:log-port (%make-void-port "w"))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue