diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:21:17 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:21:17 +0000 |
commit | 5cd95bbee8e1e0fd211b3f68255c23edbc21b8e0 (patch) | |
tree | 18eec9de4ae3f8ea84ef58f55af382b6d9646ae4 /sbin/fdisk/Makefile | |
parent | 5e349c21eb12e8346f9eeec9e1f389e621606ee0 (diff) |
Changes to build platform specific files properly with the powerpc -> macppc
port rename. This adds support for some of these to mvmeppc when it
becomes MACHINE_ARCH=powerpc, as MACHINE_ARCH is tested in some instances.
ancontrol and wicontrol are MACHINE_ARCH changes.
Diffstat (limited to 'sbin/fdisk/Makefile')
-rw-r--r-- | sbin/fdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fdisk/Makefile b/sbin/fdisk/Makefile index e4c3c962b77..0d9387ed3a0 100644 --- a/sbin/fdisk/Makefile +++ b/sbin/fdisk/Makefile @@ -1,5 +1,5 @@ # -# $OpenBSD: Makefile,v 1.16 2001/04/05 17:03:37 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 2001/09/01 16:21:16 drahn Exp $ # # Copyright (c) 1997 Tobias Weingartner # All rights reserved. @@ -30,7 +30,7 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -.if ${MACHINE} == "i386" || ${MACHINE} == "arc" || ${MACHINE} == "powerpc" || ${MACHINE} == "alpha" +.if ${MACHINE} == "i386" || ${MACHINE} == "arc" || ${MACHINE} == "macppc" || ${MACHINE} == "alpha" PROG= fdisk SRCS= fdisk.c user.c misc.c disk.c mbr.c part.c cmd.c manual.c DPADD= ${LIBUTIL} @@ -54,6 +54,6 @@ NOPROG=yes .endif MAN= fdisk.8 -MANSUBDIR=i386 arc powerpc alpha +MANSUBDIR=i386 arc macppc alpha .include <bsd.prog.mk> |