summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-12 12:54:04 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-12 12:54:04 +0000
commit4cc9ec7d69640c36631ffd4629c81fe3e11d4e80 (patch)
tree3ccd456543244189a96ecb72a4967b6bb7a707b4 /Makefile
parentba7921a06ba00e108e0f5436948e665c1f21ee64 (diff)
downloadmandoc-4cc9ec7d69640c36631ffd4629c81fe3e11d4e80.tar.gz
Don't run with -Werror when generating texts.VERSION.1.7.15
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0ae00ff3..86e5d3f8 100644
--- a/Makefile
+++ b/Makefile
@@ -254,10 +254,10 @@ mandoc: $(MAINOBJS) libmdoc.a libman.a
sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
.1.1.txt:
- ./mandoc -Wall,error $< | col -b > $@
+ ./mandoc -Wall $< | col -b > $@
.3.3.txt:
- ./mandoc -Wall,error $< | col -b > $@
+ ./mandoc -Wall $< | col -b > $@
.7.7.txt:
- ./mandoc -Wall,error $< | col -b > $@
+ ./mandoc -Wall $< | col -b > $@