diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-03 22:39:13 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-03 22:39:13 +0000 |
commit | 2e80333047a6bcd7638221e16069e121450cd1d1 (patch) | |
tree | c0379f4874858f5c901855f0185c352511954a1f /sbin | |
parent | 00c3a26ec54ec5b4ecbf48b5f2b4e86c71aef076 (diff) |
add xr installboot for i386
change msg to accomodate multiple man pages in SEEALSO
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/disklabel/Makefile | 4 | ||||
-rw-r--r-- | sbin/disklabel/disklabel.c | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/sbin/disklabel/Makefile b/sbin/disklabel/Makefile index 15b32f340e6..905f286a5a8 100644 --- a/sbin/disklabel/Makefile +++ b/sbin/disklabel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 1997/04/20 08:59:36 deraadt Exp $ +# $OpenBSD: Makefile,v 1.9 1997/09/03 22:39:11 mickey Exp $ # $NetBSD: Makefile,v 1.18 1995/10/17 16:34:04 cgd Exp $ # @(#)Makefile 8.2 (Berkeley) 3/17/94 @@ -14,7 +14,7 @@ CFLAGS+= -D${MACHINE} .if (${MACHINE} == "i386") CFLAGS+= -DNUMBOOT=2 -DDOSLABEL -CFLAGS+= -DSEEALSO="\"fdisk(8)\"" +CFLAGS+= -DSEEALSO="\"fdisk(8), installboot(8)\"" .endif .if (${MACHINE} == "arc") diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index 2d2bfb447fc..b41339e7b6b 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.c,v 1.35 1997/08/29 18:05:40 mickey Exp $ */ +/* $OpenBSD: disklabel.c,v 1.36 1997/09/03 22:39:12 mickey Exp $ */ /* $NetBSD: disklabel.c,v 1.30 1996/03/14 19:49:24 ghudson Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char rcsid[] = "$OpenBSD: disklabel.c,v 1.35 1997/08/29 18:05:40 mickey Exp $"; +static char rcsid[] = "$OpenBSD: disklabel.c,v 1.36 1997/09/03 22:39:12 mickey Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -1511,8 +1511,7 @@ usage() "`proto' is the output from the read cmd form; -R is powerful.\n"); #ifdef SEEALSO fprintf(stderr, - "The manpage %s describes procedures specific to " - "this architecture.\n", SEEALSO); + "For procedures specific to this architecture see: %s\n", SEEALSO); #endif exit(1); } |