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/pdisk/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/pdisk/Makefile')
-rw-r--r-- | sbin/pdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pdisk/Makefile b/sbin/pdisk/Makefile index fefe542b69d..151c25d7444 100644 --- a/sbin/pdisk/Makefile +++ b/sbin/pdisk/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.3 2001/04/17 05:11:10 drahn Exp $ +# $Id: Makefile,v 1.4 2001/09/01 16:21:16 drahn Exp $ -.if ${MACHINE} == "powerpc" +.if ${MACHINE} == "macppc" PROG= pdisk SRCS= pdisk.c dump.c partition_map.c convert.c io.c errors.c bitfield.c \ @@ -10,6 +10,6 @@ NOPROG=yes .endif MAN= pdisk.8 -MANSUBDIR=powerpc +MANSUBDIR=macppc .include <bsd.prog.mk> |