diff options
author | 2014-04-13 15:29:21 +0000 | |
---|---|---|
committer | 2014-04-13 15:29:21 +0000 | |
commit | abda4506cd34572ca406ce4d9ecf198e04f8187d (patch) | |
tree | 68a239f4133a9294ffe78d461db6e529f91faa38 | |
parent | Crank libcrypto minor (addition of BN_consttime_swap and CRYPTO_memcmp) (diff) | |
download | wireguard-openbsd-abda4506cd34572ca406ce4d9ecf198e04f8187d.tar.xz wireguard-openbsd-abda4506cd34572ca406ce4d9ecf198e04f8187d.zip |
At some point, we are going to switch the mandoc(1) default
from -Tascii to -Tlocale, even though not quite yet because
there are more important things to do first.
But let's already make -Tascii explicit in the build system
right now, it is safer anyway.
-rw-r--r-- | sbin/disklabel/Makefile | 4 | ||||
-rw-r--r-- | sbin/fdisk/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/disklabel/Makefile b/sbin/disklabel/Makefile index a9bf781bc65..27942181673 100644 --- a/sbin/disklabel/Makefile +++ b/sbin/disklabel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.55 2014/03/18 22:36:30 miod Exp $ +# $OpenBSD: Makefile,v 1.56 2014/04/13 15:29:21 schwarze Exp $ PROG= disklabel SRCS= disklabel.c dkcksum.c editor.c manual.c @@ -17,7 +17,7 @@ manual.c: echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c .else disklabel.cat8: disklabel.8 - mandoc ${.ALLSRC} > ${.TARGET} + mandoc -Tascii ${.ALLSRC} > ${.TARGET} manual.c: disklabel.cat8 (echo 'const unsigned char manpage[] = {'; \ diff --git a/sbin/fdisk/Makefile b/sbin/fdisk/Makefile index 66bc3f00153..4f5d4666ca8 100644 --- a/sbin/fdisk/Makefile +++ b/sbin/fdisk/Makefile @@ -1,5 +1,5 @@ # -# $OpenBSD: Makefile,v 1.39 2013/10/31 22:37:17 schwarze Exp $ +# $OpenBSD: Makefile,v 1.40 2014/04/13 15:29:21 schwarze Exp $ # # Copyright (c) 1997 Tobias Weingartner # All rights reserved. @@ -40,7 +40,7 @@ manual.c: echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c .else fdisk.cat8: fdisk.8 - mandoc ${.ALLSRC} > ${.TARGET} + mandoc -Tascii ${.ALLSRC} > ${.TARGET} manual.c: fdisk.cat8 (echo 'const unsigned char manpage[] = {'; \ |