gnu: ttf2eot: Return #t from all phases.
* gnu/packages/fontutils.scm (ttf2eot)[arguments]: Return #t rather than undefined from the ‘install’ phase.
This commit is contained in:
parent
70f57ae005
commit
bf43e13381
|
@ -177,7 +177,8 @@ Converts WOFF fonts to OpenType fonts
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(install-file "ttf2eot" bin)))))))
|
||||
(install-file "ttf2eot" bin)
|
||||
#t))))))
|
||||
(synopsis "Convert from TrueType to Embeddable Open Type")
|
||||
(description
|
||||
"This package contains a commandline wrapper around OpenTypeUtilities.cpp
|
||||
|
|
Loading…
Reference in New Issue