From 4f11dc30d324964c14bac748393f7b54df69d340 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Wed, 13 May 2020 17:28:27 +0200 Subject: [PATCH] gnu: font-gnu-freefont: fix for bug 41233. * gnu/packages/fonts.scm (font-gnu-freefont): should fix bug 41233. --- gnu/packages/fonts.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 1728eeeaf9..64d5c17346 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -255,11 +255,11 @@ The Lato 2.010 family supports more than 100 Latin-based languages, over (let ((doc-dir (string-append %output "/share/doc/" ,name "-" ,version)) (ttf-font-dir (string-append %output - "/share/fonts/ttf")) + "/share/fonts/truetype")) (otf-font-dir (string-append %output - "/share/fonts/otf")) + "/share/fonts/opentype")) (woff-font-dir (string-append %output - "/share/fonts/woff"))) + "/share/fonts/webfonts"))) (mkdir-p doc-dir) (substitute* "Makefile" (("\\$\\(TMPDIR\\)") doc-dir) -- 2.26.2