From 4c1fe1313707ac3f16fe0ccfdaa1e7850aa55586 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 8 Nov 2023 16:06:00 -0500 Subject: [PATCH] Makefile.am: pass the output file to sfd2woff.ff This is required as of ce8a3cc46218347579ca35e370d1afb20a5a4f48. We also prefix the path to sfd2woff.ff with $(srcdir) for out-of-source builds. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 82aed21..d111be2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -69,7 +69,7 @@ tableau.min.min.svg: tableau.min.svg # Use FontForge to convert the sfd source files to woff2. .sfd.woff2: - @FONTFORGE@ -script sfd2woff.ff $< + @FONTFORGE@ -script $(srcdir)/sfd2woff.ff $< $@ # Base64-encode a woff2 (web open font format 2.0) file. We use this # to embed fonts directly into the CSS that requires them. -- 2.44.2