summaryrefslogtreecommitdiffstatshomepage
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
commit05b3738ce0f32c1bfdbb661b8e412621d8afc115 (patch)
treed2b7da7656555417bd18223ca47dc13ff2533d70
parentb3cf0892b65aa9f16b8201298caa411c6b786b31 (diff)
downloadmandoc-05b3738ce0f32c1bfdbb661b8e412621d8afc115.tar.gz
mandoc-05b3738ce0f32c1bfdbb661b8e412621d8afc115.tar.zst
mandoc-05b3738ce0f32c1bfdbb661b8e412621d8afc115.zip
Don't run with -Werror when generating texts.VERSION_1_7_15
-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 > $@