diff options
-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[] = {'; \ |