summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-06-23 21:39:44 +0300
committerLars Wirzenius <liw@liw.fi>2019-06-23 21:39:44 +0300
commite32eb85bd50fe01b289e28fb558d41800d9a10c1 (patch)
tree8a4977a781cd7569966ed3180deeee717d46b8d3
parent126c2bd4e90734957a08c0c2ec7b635e6769c419 (diff)
downloadfable-poc-e32eb85bd50fe01b289e28fb558d41800d9a10c1.tar.gz
Fix: munge PATH so ftt-pandoc from . is found
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 71e7abf..06f1414 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ publish:
install -m 0644 $(outputs) files
.md.pdf:
- ./ftt-docgen --pdf $< > $@
+ PATH=".:$$PATH" ./ftt-docgen --pdf $<
.md.html:
- ./ftt-docgen --html $< > $@ -- -H fable-doc.css
+ PATH=".:$$PATH" ./ftt-docgen --html $< -- -H fable-doc.css