From: Michael Orlitzky Date: Wed, 8 Nov 2023 21:10:03 +0000 (-0500) Subject: Makefile.am: prefix svgclean.xsl with $(srcdir) for out-of-source builds X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=c0af94ba0c2cfcbea538f02375d95e6115ca6ff8;p=charm-bypass.git Makefile.am: prefix svgclean.xsl with $(srcdir) for out-of-source builds --- 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.