diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-17 17:55:46 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-17 17:57:56 -0400 |
commit | 6449e68d350b8196d39715a2e775337c7c93387e (patch) | |
tree | c5b0d8e28a37386c91ef32249ef76284f725af26 /gnu/packages | |
parent | 0d98cb9a391a06490feed8f10c0b442bab28cd9d (diff) | |
download | guix-6449e68d350b8196d39715a2e775337c7c93387e.tar guix-6449e68d350b8196d39715a2e775337c7c93387e.tar.gz |
gnu: gs-fonts: Return #t from install phase.
* gnu/packages/ghostscript.scm (gs-fonts): Return #t from the install phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ghostscript.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index e37ceb9e16..6bbedffa2c 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -336,7 +336,8 @@ architecture.") (for-each (lambda (file) (copy-file file (string-append dir "/" file))) - (find-files "." "pfb|afm")))))))) + (find-files "." "pfb|afm")) + #t)))))) (synopsis "Free replacements for the PostScript fonts") (description "Ghostscript fonts provides fonts and font metrics customarily distributed with |