diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-12 12:54:04 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-12 12:54:04 +0000 |
commit | 4cc9ec7d69640c36631ffd4629c81fe3e11d4e80 (patch) | |
tree | 3ccd456543244189a96ecb72a4967b6bb7a707b4 | |
parent | ba7921a06ba00e108e0f5436948e665c1f21ee64 (diff) | |
download | mandoc-4cc9ec7d69640c36631ffd4629c81fe3e11d4e80.tar.gz |
Don't run with -Werror when generating texts.VERSION.1.7.15
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 > $@ |