From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id o7K5r0A1030161 for ; Fri, 20 Aug 2010 01:53:00 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id o7K5qxg0030310; Fri, 20 Aug 2010 01:52:59 -0400 (EDT) Date: Fri, 20 Aug 2010 01:52:59 -0400 (EDT) Message-Id: <201008200552.o7K5qxg0030310@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Fixed Makefile auto-generation of manuals not to use -fstrict X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Fixed Makefile auto-generation of manuals not to use -fstrict and [old] -Werror. Modified Files: -------------- mdocml: Makefile Revision Data ------------- Index: Makefile =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/Makefile,v retrieving revision 1.290 retrieving revision 1.291 diff -LMakefile -LMakefile -u -p -r1.290 -r1.291 --- Makefile +++ Makefile @@ -298,16 +298,16 @@ mandoc: $(MAINOBJS) libroff.a libmdoc.a sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@ .1.1.txt .3.3.txt .7.7.txt: - ./mandoc -Tascii -Wall,error -fstrict $< | col -b > $@ + ./mandoc -Tascii -Wall,stop $< | col -b > $@ .1.1.sgml .3.3.sgml .7.7.sgml: - ./mandoc -Thtml -Wall,error -fstrict -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@ + ./mandoc -Thtml -Wall,stop -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@ .1.1.ps .3.3.ps .7.7.ps: - ./mandoc -Tps -Wall,error -fstrict $< > $@ + ./mandoc -Tps -Wall,stop $< > $@ .1.1.pdf .3.3.pdf .7.7.pdf: - ./mandoc -Tpdf -Wall,error -fstrict $< > $@ + ./mandoc -Tpdf -Wall,stop $< > $@ .tar.gz.md5: md5 $< > $@ -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv