From c0af94ba0c2cfcbea538f02375d95e6115ca6ff8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 8 Nov 2023 16:10:03 -0500 Subject: [PATCH] Makefile.am: prefix svgclean.xsl 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 d111be2..19181ae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,7 @@ favicon.min.svg: favicon.svg # Optimize the tableau once using XSL, to catch a few things that # "scour" will miss... tableau.min.svg: tableau.svg svgclean.xsl - @XSLTPROC@ svgclean.xsl $< > $@ + @XSLTPROC@ $(srcdir)/svgclean.xsl $< > $@ # Optimize the tableau (again) using scour, removing its XML prologue # so that it can be included directly into the HTML document. -- 2.43.2