diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 10:14:49 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 10:14:49 +0000 |
commit | 3e18d9bc6063766a15850e84e4f580a65317a923 (patch) | |
tree | 86ac568ee381c9fc5049b0207d5c422cfda7f6bc /sbin | |
parent | 816369f486672e86393e123fc730a0123727c518 (diff) |
Remove the NOMAN hack. This is not the way we want to do this.
(and the original problem is gone anyway).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fdisk/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sbin/fdisk/Makefile b/sbin/fdisk/Makefile index 25fa2cbb680..469d397a4e4 100644 --- a/sbin/fdisk/Makefile +++ b/sbin/fdisk/Makefile @@ -1,5 +1,5 @@ # -# $OpenBSD: Makefile,v 1.14 2001/01/18 15:07:24 art Exp $ +# $OpenBSD: Makefile,v 1.15 2001/02/05 10:14:48 art Exp $ # # Copyright (c) 1997 Tobias Weingartner # All rights reserved. @@ -37,15 +37,10 @@ DPADD= ${LIBUTIL} LDADD= -lutil CLEANFILES+=manual.c -.if defined(NOMAN) -manual.c: - echo 'char manpage[] = "Sorry. No man page.";' > manual.c -.else manual.c: fdisk.cat8 (echo 'char manpage[] = "\\'; \ sed -e 's/[\\"]/\\&/g' -e 's/$$/\\n\\/' fdisk.cat8; \ echo '";' ) > manual.c -.endif .else NOPROG=yes .endif |