diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 10:16:19 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-02-05 10:16:19 +0000 |
commit | b72afcfef1ad5dee5e08fbbe00d941822b80ca62 (patch) | |
tree | 96d8cf67ae17b00728e9cb3231b0fdbe5a0bf203 | |
parent | 3e18d9bc6063766a15850e84e4f580a65317a923 (diff) |
Remove the NOMAN hack. This is not the way we want to do this.
(and the original problem is gone anyway).
-rw-r--r-- | sbin/disklabel/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sbin/disklabel/Makefile b/sbin/disklabel/Makefile index 02508a80c9a..1d5946a8df0 100644 --- a/sbin/disklabel/Makefile +++ b/sbin/disklabel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 2001/01/18 15:05:20 art Exp $ +# $OpenBSD: Makefile,v 1.24 2001/02/05 10:16:18 art Exp $ PROG= disklabel SRCS= disklabel.c dkcksum.c editor.c manual.c @@ -8,15 +8,10 @@ MAN= disklabel.8 disklabel.5 CLEANFILES+=manual.c -.if defined(NOMAN) -manual.c: - echo 'char manpage[] = "Sorry. No man page.";' > manual.c -.else manual.c: disklabel.cat8 (echo 'char manpage[] = "\\'; \ sed -e 's/[\\"]/\\&/g' -e 's/$$/\\n\\/' disklabel.cat8; \ echo '";' ) > manual.c -.endif .if (${MACHINE} == "amiga") CFLAGS+= -D${MACHINE} |