diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-16 05:04:08 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-16 05:21:38 +0200 |
commit | bf43e1338144a0ecca2a48e4120b20792ca9ed88 (patch) | |
tree | e2d5dfe116f30d0a44943b713d01633cc77fc854 | |
parent | 70f57ae00525f6fc919f62aea647a33b29d28537 (diff) | |
download | guix-bf43e1338144a0ecca2a48e4120b20792ca9ed88.tar guix-bf43e1338144a0ecca2a48e4120b20792ca9ed88.tar.gz |
gnu: ttf2eot: Return #t from all phases.
* gnu/packages/fontutils.scm (ttf2eot)[arguments]: Return #t rather than
undefined from the ‘install’ phase.
-rw-r--r-- | gnu/packages/fontutils.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 725387ce8e..d2c12e8cae 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -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 |