From 0bbdd467e7b6e7fd8399e949c5b83a8a255cbaed Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Wed, 26 Apr 2017 16:19:57 -0700 Subject: [PATCH] [master] fix building of markdown output on docs --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index f918b682f91..b2681edb75f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -90,15 +90,15 @@ test-force: exit $$status README: README.md - ${PANDOC} --email-obfuscation=none -s -t html $< | \ + ${PANDOC} --email-obfuscation=none -s -t html README.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html > $@ HISTORY: HISTORY.md - ${PANDOC} --email-obfuscation=none -s -t html $< | \ + ${PANDOC} --email-obfuscation=none -s -t html HISTORY.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html > $@ OPTIONS: OPTIONS.md - ${PANDOC} --email-obfuscation=none -s -t html $< | \ + ${PANDOC} --email-obfuscation=none -s -t html OPTIONS.md | \ ${W3M} -dump -cols 75 -O ascii -T text/html > $@ unit:: -- 2.47.3