diff options
author | 2014-03-30 19:43:19 +0000 | |
---|---|---|
committer | 2014-03-30 19:43:19 +0000 | |
commit | dbcef9fb33477c101128f636b370ed732705e00e (patch) | |
tree | 65927d47442ceb49f1953532717c7063f9f4fcff | |
parent | Drop isp(4) to make the kernel fit again. (diff) | |
download | wireguard-openbsd-dbcef9fb33477c101128f636b370ed732705e00e.tar.xz wireguard-openbsd-dbcef9fb33477c101128f636b370ed732705e00e.zip |
make -Tascii explicit, to be safe when -Tlocale becomes the default
-rw-r--r-- | regress/usr.bin/mandoc/roff/de/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/usr.bin/mandoc/roff/de/Makefile b/regress/usr.bin/mandoc/roff/de/Makefile index 2f3262bce36..72c0788535f 100644 --- a/regress/usr.bin/mandoc/roff/de/Makefile +++ b/regress/usr.bin/mandoc/roff/de/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2012/06/02 23:18:31 schwarze Exp $ +# $OpenBSD: Makefile,v 1.2 2014/03/30 19:43:19 schwarze Exp $ REGRESS_TARGETS=TH Dd @@ -23,10 +23,10 @@ ascii-diff-opt: TH.mandoc_ascii_opt Dd.mandoc_ascii_opt ${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt TH.mandoc_ascii_opt: TH.in - ${MANDOC} -man ${.ALLSRC} > ${.TARGET} + ${MANDOC} -Tascii -man ${.ALLSRC} > ${.TARGET} Dd.mandoc_ascii_opt: Dd.in - ${MANDOC} -mdoc ${.ALLSRC} > ${.TARGET} + ${MANDOC} -Tascii -mdoc ${.ALLSRC} > ${.TARGET} ascii-clean-opt: rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt |