From 6f709f5dcdb452df365a2f6927c761fc386c0b0e Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Sun, 10 May 2020 23:57:23 -0400 Subject: [PATCH] gnu: font-gnu-freefont: Correct fonts' sub-directory names. * gnu/packages/fonts.scm (font-gnu-freefont): Fix /share/fonts/*. [arguments]<#:phases>: Change sub-dir strings from ttf, otf and woff; to truetype, opentype and webopen; respectively. --- 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 6e9b080299..8924c377c6 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/webopen"))) (mkdir-p doc-dir) (substitute* "Makefile" (("\\$\\(TMPDIR\\)") doc-dir) -- 2.26.2