summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-11-25 15:56:29 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-11-25 15:56:29 +0000
commitff0920e03a1093cef2cfb170b73715f7a309db22 (patch)
tree6d9521c0068bbe2c2b69c36a5350f7bf15b5bb59
parentb2c64474e1ac428685918ca5e2e78ae3118f4f40 (diff)
Build fdisk(8) on all architectures, since it is minimally useful to view
the MBR... and install the man page in the MI location.
-rw-r--r--sbin/fdisk/Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/sbin/fdisk/Makefile b/sbin/fdisk/Makefile
index b1c58e6c3b4..4d7cb7f12e3 100644
--- a/sbin/fdisk/Makefile
+++ b/sbin/fdisk/Makefile
@@ -1,5 +1,5 @@
#
-# $OpenBSD: Makefile,v 1.35 2007/08/01 21:34:01 deraadt Exp $
+# $OpenBSD: Makefile,v 1.36 2007/11/25 15:56:28 deraadt Exp $
#
# Copyright (c) 1997 Tobias Weingartner
# All rights reserved.
@@ -25,10 +25,6 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-.if (${MACHINE} == "alpha") || (${MACHINE} == "amd64") || \
- (${MACHINE} == "armish") || (${MACHINE} == "i386") || \
- (${MACHINE} == "landisk") || (${MACHINE} == "macppc") || \
- (${MACHINE} == "zaurus")
PROG= fdisk
SRCS= fdisk.c user.c misc.c disk.c mbr.c part.c cmd.c manual.c
DPADD= ${LIBUTIL}
@@ -49,11 +45,6 @@ manual.c: fdisk.cat8
echo '};'; echo 'const int manpage_sz = sizeof(manpage);') > manual.c
.endif
-.else
-NOPROG=yes
-.endif
-
MAN= fdisk.8
-MANSUBDIR=alpha amd64 armish i386 landisk macppc zaurus
.include <bsd.prog.mk>