From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 942 invoked from network); 30 Jul 2020 21:43:02 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 30 Jul 2020 21:43:02 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 7de6f57a for ; Thu, 30 Jul 2020 16:43:00 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 4492faa8 for ; Thu, 30 Jul 2020 16:43:00 -0500 (EST) Date: Thu, 30 Jul 2020 16:43:00 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: trivial sync with OpenBSD in parts of these files that are not X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: Log Message: ----------- trivial sync with OpenBSD in parts of these files that are not used by -portable; consequently, no functional change Modified Files: -------------- mandoc/regress/eqn: Makefile.inc mandoc/regress/roff/de: Makefile Revision Data ------------- Index: Makefile.inc =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/eqn/Makefile.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -Lregress/eqn/Makefile.inc -Lregress/eqn/Makefile.inc -u -p -r1.3 -r1.4 --- regress/eqn/Makefile.inc +++ regress/eqn/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 2020/01/08 10:17:15 schwarze Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2020/07/30 21:32:19 schwarze Exp $ SKIP_GROFF ?= ${REGRESS_TARGETS} SKIP_TMAN ?= ALL @@ -11,7 +11,7 @@ _FULLHTMLFILES = ${HTML_TARGETS:S/$/.htm html-clean: .if !empty(_FULLHTMLFILES) - @rm -f ${_HTMLFILES} ${_FULLHTMLFILES} + rm -f ${_HTMLFILES} ${_FULLHTMLFILES} .endif .for t in ${HTML_TARGETS} @@ -23,5 +23,5 @@ ${t}.out_html: ${t}.in .include "../Makefile.inc" .in.mandoc_html: - @${MANDOC} ${MOPTS} -Thtml ${.IMPSRC} > ${.TARGET:S/mandoc_html$/html/} - @${.CURDIR}/../extract.pl < ${.TARGET:S/mandoc_html$/html/} > ${.TARGET} + ${MANDOC} ${MOPTS} -Thtml ${.IMPSRC} > ${.TARGET:S/mandoc_html$/html/} + ${.CURDIR}/../extract.pl < ${.TARGET:S/mandoc_html$/html/} > ${.TARGET} Index: Makefile =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/roff/de/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -Lregress/roff/de/Makefile -Lregress/roff/de/Makefile -u -p -r1.5 -r1.6 --- regress/roff/de/Makefile +++ regress/roff/de/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2019/04/21 23:45:50 schwarze Exp $ +# $OpenBSD: Makefile,v 1.14 2020/07/30 21:32:19 schwarze Exp $ REGRESS_TARGETS = append cond empty escname factorial REGRESS_TARGETS += indir infinite startde tab TH Dd @@ -28,17 +28,17 @@ groff-clean: groff-clean-opt # --- local rules --- ascii-diff-opt: TH.mandoc_ascii_opt Dd.mandoc_ascii_opt - @${DIFF} ${.CURDIR}/TH.out_ascii_opt TH.mandoc_ascii_opt - @${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt + ${DIFF} ${.CURDIR}/TH.out_ascii_opt TH.mandoc_ascii_opt + ${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt TH.mandoc_ascii_opt: TH.in - @${MANDOC} -Ios=OpenBSD -Tascii -man ${.ALLSRC} > ${.TARGET} + ${MANDOC} -Ios=OpenBSD -Tascii -man ${.ALLSRC} > ${.TARGET} Dd.mandoc_ascii_opt: Dd.in - @${MANDOC} -Ios=OpenBSD -Tascii -mdoc ${.ALLSRC} > ${.TARGET} + ${MANDOC} -Ios=OpenBSD -Tascii -mdoc ${.ALLSRC} > ${.TARGET} ascii-clean-opt: - @rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt + rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt TH.out_ascii_opt: TH.in /usr/local/bin/nroff -c -man -Tascii ${.ALLSRC} > ${.TARGET} -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv