summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-07-19 00:03:53 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-07-19 00:03:53 +0000
commit7b79c7366ff21764d1b5f6a37f85fd6307cab99e (patch)
treeaaa1721b7715cbb2abfe1b5e901377dff959d779 /sys/arch
parent7da37264d9626a821731a590b0e20fb530348aab (diff)
don't specify the leading "/" in MANSUBDIR (otherwise "//" occurs)
ok millert@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/alpha/stand/installboot/Makefile4
-rw-r--r--sys/arch/alpha/stand/setnetbootinfo/Makefile4
-rw-r--r--sys/arch/hppa/stand/boot/Makefile4
-rw-r--r--sys/arch/hppa/stand/mkboot/Makefile4
-rw-r--r--sys/arch/i386/stand/Makefile.inc4
-rw-r--r--sys/arch/mvme68k/stand/installboot/Makefile4
-rw-r--r--sys/arch/sparc/stand/installboot/Makefile4
-rw-r--r--sys/arch/sparc64/stand/installboot/Makefile4
8 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/alpha/stand/installboot/Makefile b/sys/arch/alpha/stand/installboot/Makefile
index 1b38840a675..3f86a336b79 100644
--- a/sys/arch/alpha/stand/installboot/Makefile
+++ b/sys/arch/alpha/stand/installboot/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.7 2001/06/22 14:07:44 deraadt Exp $
+# $OpenBSD: Makefile,v 1.8 2003/07/19 00:03:51 david Exp $
# $NetBSD: Makefile,v 1.2 1996/11/06 23:09:13 cgd Exp $
.PATH: ${.CURDIR}/..
MAN= installboot.8
-MANSUBDIR=/alpha
+MANSUBDIR=alpha
.if ${MACHINE} == "alpha"
PROG= installboot
diff --git a/sys/arch/alpha/stand/setnetbootinfo/Makefile b/sys/arch/alpha/stand/setnetbootinfo/Makefile
index ff30d7a5de6..8dd68fb9316 100644
--- a/sys/arch/alpha/stand/setnetbootinfo/Makefile
+++ b/sys/arch/alpha/stand/setnetbootinfo/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.2 2000/05/25 21:54:40 deraadt Exp $
+# $OpenBSD: Makefile,v 1.3 2003/07/19 00:03:51 david Exp $
# $NetBSD: Makefile,v 1.4 1997/04/06 08:41:36 cgd Exp $
.PATH: ${.CURDIR}/..
MAN= setnetbootinfo.8
-MANSUBDIR=/alpha
+MANSUBDIR=alpha
.if ${MACHINE} == "alpha"
PROG= setnetbootinfo
diff --git a/sys/arch/hppa/stand/boot/Makefile b/sys/arch/hppa/stand/boot/Makefile
index f8eec0bbe11..f213351fd8c 100644
--- a/sys/arch/hppa/stand/boot/Makefile
+++ b/sys/arch/hppa/stand/boot/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.17 2003/03/28 22:40:47 mickey Exp $
+# $OpenBSD: Makefile,v 1.18 2003/07/19 00:03:51 david Exp $
MAN= boot.8
-MANSUBDIR=/hppa
+MANSUBDIR=hppa
MLINKS= boot.8 boot.conf.8
S =${.CURDIR}/../../../..
CLEANFILES+= boot.gdb boot.map boot.lif
diff --git a/sys/arch/hppa/stand/mkboot/Makefile b/sys/arch/hppa/stand/mkboot/Makefile
index 3df2f98cf3a..81f7dc51a7f 100644
--- a/sys/arch/hppa/stand/mkboot/Makefile
+++ b/sys/arch/hppa/stand/mkboot/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.5 2003/01/30 05:36:18 mickey Exp $
+# $OpenBSD: Makefile,v 1.6 2003/07/19 00:03:52 david Exp $
MAN= mkboot.8
-MANSUBDIR=/hppa
+MANSUBDIR=hppa
.if ${MACHINE} == "hppa"
PROG= mkboot
diff --git a/sys/arch/i386/stand/Makefile.inc b/sys/arch/i386/stand/Makefile.inc
index 32c3a543de6..8eebeabcd97 100644
--- a/sys/arch/i386/stand/Makefile.inc
+++ b/sys/arch/i386/stand/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.32 2003/07/05 17:02:55 deraadt Exp $
+# $OpenBSD: Makefile.inc,v 1.33 2003/07/19 00:03:52 david Exp $
CFLAGS=${DEBUG} -Os -Wall -Werror
CFLAGS+= -fno-stack-protector
@@ -52,4 +52,4 @@ LIBZ=${SADIR}/libz/${__objdir}/libz.a
# NO_NET=no_net
BINDIR= /usr/mdec
-MANSUBDIR=/i386
+MANSUBDIR=i386
diff --git a/sys/arch/mvme68k/stand/installboot/Makefile b/sys/arch/mvme68k/stand/installboot/Makefile
index 3f969dabdc6..92b5be3593c 100644
--- a/sys/arch/mvme68k/stand/installboot/Makefile
+++ b/sys/arch/mvme68k/stand/installboot/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.4 2000/05/25 21:55:03 deraadt Exp $
+# $OpenBSD: Makefile,v 1.5 2003/07/19 00:03:52 david Exp $
MAN= installboot.8
-MANSUBDIR=/mvme68k
+MANSUBDIR=mvme68k
.if ${MACHINE} == "mvme68k"
PROG= installboot
diff --git a/sys/arch/sparc/stand/installboot/Makefile b/sys/arch/sparc/stand/installboot/Makefile
index bcf5cebd3d4..3c3690dc888 100644
--- a/sys/arch/sparc/stand/installboot/Makefile
+++ b/sys/arch/sparc/stand/installboot/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.6 2001/05/21 21:02:47 deraadt Exp $
+# $OpenBSD: Makefile,v 1.7 2003/07/19 00:03:52 david Exp $
MAN= installboot.8
-MANSUBDIR=/sparc
+MANSUBDIR=sparc
LDSTATIC=-static
.if ${MACHINE} == "sparc"
diff --git a/sys/arch/sparc64/stand/installboot/Makefile b/sys/arch/sparc64/stand/installboot/Makefile
index bb44b4b5b6e..328f76a9404 100644
--- a/sys/arch/sparc64/stand/installboot/Makefile
+++ b/sys/arch/sparc64/stand/installboot/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.4 2001/09/07 15:35:23 jason Exp $
+# $OpenBSD: Makefile,v 1.5 2003/07/19 00:03:52 david Exp $
# $NetBSD: Makefile,v 1.13 2000/08/16 08:24:01 mrg Exp $
.include <bsd.own.mk>
MAN= installboot.8
-MANSUBDIR=/sparc64
+MANSUBDIR=sparc64
.if ${MACHINE} == "sparc64"
PROG= installboot