From f088610c6ed93a5670cffa6cfcdb0a60804888dd Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 5 Aug 2008 14:53:34 +0000 Subject: $< is already translated to the VPATH in pattern rules, no need to prefix with $(srcdir). Reflect this in the rule that creates variations of svg files for the documentation. --- docs/lasso-book/figures/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/lasso-book/figures/Makefile.am b/docs/lasso-book/figures/Makefile.am index aeb1616f..4873db98 100644 --- a/docs/lasso-book/figures/Makefile.am +++ b/docs/lasso-book/figures/Makefile.am @@ -25,7 +25,7 @@ CLEANFILES = $(FIGURES_PNG_FILES) $(GENERATED_FIGURES_SVG_FILES) %.svg: $(XSLTPROC) --stringparam stepno `echo $@ | sed -e 's/[^0-9]//g'` \ - $(srcdir)/step.xsl $(srcdir)/$< > $@ + $(srcdir)/step.xsl $< > $@ %.png: %.svg $(INKSCAPE) -d 150 --export-png=$@ $< -- cgit