diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-01 16:00:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-01 16:00:10 +0000 |
commit | b6d3d185a972bd1c939d8f454f1104f94d252c22 (patch) | |
tree | d7d0d7cc2a76831324c246d0afe58b83406149f1 | |
parent | bdb0e7c338c52bd055227ddd81a4bcadd7933511 (diff) |
will do disklabels like hppa
-rw-r--r-- | sbin/disklabel/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/disklabel/Makefile b/sbin/disklabel/Makefile index ead4e02e63f..e057ded6c56 100644 --- a/sbin/disklabel/Makefile +++ b/sbin/disklabel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.37 2005/02/16 20:39:37 millert Exp $ +# $OpenBSD: Makefile,v 1.38 2005/04/01 16:00:09 deraadt Exp $ PROG= disklabel SRCS= disklabel.c dkcksum.c editor.c manual.c @@ -37,7 +37,8 @@ CFLAGS+= -DSEEALSO="\"fdisk(8), installboot(8)\"" .endif -.if (${MACHINE} == "hp300") || (${MACHINE} == "vax") || (${MACHINE} == "hppa") +.if (${MACHINE} == "hp300") || (${MACHINE} == "vax") || \ + (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") CFLAGS+= -DNUMBOOT=1 .endif |