From 4eec7f6324443b300b80ff1f9e0cff21ec8bd96c Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Tue, 1 Sep 2015 19:53:49 -0500 Subject: [PATCH] Make sure the makefile looks in curdir for files Eg. in case you're generating something in the inbox --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 25389fc2..1598e95e 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ xep-%.pdf: $(OUTDIR)/xep-%.pdf $(OUTDIR)/%.html: %.xml $(XMLDEPS) - xsltproc xep.xsl "$<" > "$@" + xsltproc --path $(CURDIR) xep.xsl "$<" > "$@" $(OUTDIR)/%.pdf: %.xml $(TEMPDIR)/%.xml.texml $(TEMPDIR)/%.xml.texml.tex $(TEXMLDEPS) cd $(TEMPDIR); xelatex $(TEMPDIR)/$<.texml.tex