mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
build: font-build-system: Do not return #t from phases.
* guix/build/font-build-system.scm (unpack, install): Do not return #t from phases.
This commit is contained in:
parent
0c272b6e7a
commit
3d0e92de09
1 changed files with 2 additions and 4 deletions
|
@ -41,8 +41,7 @@ (define* (unpack #:key source #:allow-other-keys)
|
|||
(begin
|
||||
(mkdir "source")
|
||||
(chdir "source")
|
||||
(copy-file source (strip-store-file-name source))
|
||||
#t)
|
||||
(copy-file source (strip-store-file-name source)))
|
||||
(gnu:unpack #:source source)))
|
||||
|
||||
(define* (install #:key outputs #:allow-other-keys)
|
||||
|
@ -55,8 +54,7 @@ (define* (install #:key outputs #:allow-other-keys)
|
|||
(for-each (cut install-file <> (string-append fonts "/opentype"))
|
||||
(find-files source "\\.(otf|otc)$"))
|
||||
(for-each (cut install-file <> (string-append fonts "/web"))
|
||||
(find-files source "\\.(woff|woff2)$"))
|
||||
#t))
|
||||
(find-files source "\\.(woff|woff2)$"))))
|
||||
|
||||
(define %standard-phases
|
||||
(modify-phases gnu:%standard-phases
|
||||
|
|
Loading…
Reference in a new issue