aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororbea <ovariegata@yahoo.com>2016-10-01 13:23:45 -0700
committerorbea <ovariegata@yahoo.com>2016-10-01 13:25:46 -0700
commitd25948c5a7922d8cfd994694f2d51e9d0133ac0d (patch)
tree26b4403959bf47e34c27b32c09921097546d35a6
parente03306d1709d13d2e67349d42488a93abc4dc32a (diff)
downloadtinycc-d25948c5a7922d8cfd994694f2d51e9d0133ac0d.tar.gz
tinycc-d25948c5a7922d8cfd994694f2d51e9d0133ac0d.tar.bz2
Fix building man pages.
The path for texi2pod.pl in the makefile was wrong causing the perl script to not be found.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 57d9bc4..2bc8075 100644
--- a/Makefile
+++ b/Makefile
@@ -306,7 +306,7 @@ tcc-doc.html: tcc-doc.texi
-makeinfo --no-split --html --number-sections -o $@ $<
tcc.1: tcc-doc.texi
- -texi2pod.pl $< tcc.pod
+ -./texi2pod.pl $< tcc.pod
-pod2man --section=1 --center="Tiny C Compiler" --release="$(VERSION)" tcc.pod > $@
tcc-doc.info: tcc-doc.texi