From b853e0a808ed5c2fe4c1850d46eb2370c967f46d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 27 Jul 2013 20:28:31 -0600 Subject: fix ronn stripping too much from the filename --- common.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common.mk') diff --git a/common.mk b/common.mk index a2aa260..60e3630 100644 --- a/common.mk +++ b/common.mk @@ -15,9 +15,9 @@ build_files = $(progs) $(confs) $(mans) build: PHONY $(build_files) %: %.ronn - ronn --roff $(RONNFLAGS) '$<' + ronn --roff $(RONNFLAGS) < '$<' > '$@' %.html: %.ronn - ronn --html $(RONNFLAGS) '$<' + ronn --html $(RONNFLAGS) < '$<' > '$@' ################################################################################ -- cgit v1.2.2