diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-18 23:24:33 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-18 23:30:35 -0400 |
commit | 38ef437b0c08d8568d6cb1cb0ff1f5c9a66336dd (patch) | |
tree | 41cd57799cff151ca22b31c6cf01625100d46987 | |
parent | b5e530198ab11c511bed0a2d1d12728bd62f1c2c (diff) |
gnu: font-dejavu: Return #t from all phases.
* gnu/packages/fonts.scm (font-dejavu)[arguments]: Return #t from
the 'install-conf' phase.
-rw-r--r-- | gnu/packages/fonts.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index aa9e466ebb..4463a77d45 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -137,7 +137,8 @@ TrueType (TTF) files.") (lambda* (#:key outputs #:allow-other-keys) (let ((conf-dir (string-append (assoc-ref outputs "out") "/share/fontconfig/conf.avail"))) - (copy-recursively "fontconfig" conf-dir))))))) + (copy-recursively "fontconfig" conf-dir) + #t)))))) (home-page "http://dejavu-fonts.org/") (synopsis "Vera font family derivate with additional characters") (description "DejaVu provides an expanded version of the Vera font family |