about summary refs log tree commit homepage
path: root/Documentation/include.mk
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-08-31 19:25:15 +0000
committerEric Wong <e@80x24.org>2016-08-31 19:25:15 +0000
commitdfb1ed795ba2890b710b3faee82db9ccdf888e17 (patch)
tree61bdf8f6affe96bb1e2ad566a8f936e031759e37 /Documentation/include.mk
parent8bf6cdaead2b6976f6336d31614f355e83fe559d (diff)
downloadpublic-inbox-dfb1ed795ba2890b710b3faee82db9ccdf888e17.tar.gz
Since this is bundled with the source, we might as well use
internal APIs to avoid having duplicate code (and bugs :P)
Diffstat (limited to 'Documentation/include.mk')
-rw-r--r--Documentation/include.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/include.mk b/Documentation/include.mk
index 5d730285..51a914b3 100644
--- a/Documentation/include.mk
+++ b/Documentation/include.mk
@@ -52,7 +52,8 @@ all :: $(mantxt)
 Documentation/%.txt : Documentation/%.pod
         $(podtext) $< $@+ && mv $@+ $@
 
-txt2pre = ./Documentation/txt2pre <$< >$@+ && touch -r $< $@+ && mv $@+ $@
+txt2pre = $(PERL) -I lib ./Documentation/txt2pre <$< >$@+ && \
+        touch -r $< $@+ && mv $@+ $@
 txt := INSTALL README COPYING TODO
 dtxt := design_notes.txt design_www.txt dc-dlvr-spam-flow.txt
 dtxt := $(addprefix Documentation/, $(dtxt)) $(mantxt)