summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2003-05-20 05:05:17 +0000
committertedu <tedu@openbsd.org>2003-05-20 05:05:17 +0000
commit4e01fa0e970ed0373e6013dccf76bd130830019b (patch)
tree0920f2059c003754ff537d771db638703143638d
parentcleanup (diff)
downloadwireguard-openbsd-4e01fa0e970ed0373e6013dccf76bd130830019b.tar.xz
wireguard-openbsd-4e01fa0e970ed0373e6013dccf76bd130830019b.zip
turn on mount_ntfs. i386 only until we know it works somewhere else
-rw-r--r--sbin/Makefile3
-rw-r--r--sbin/mount_ntfs/Makefile6
2 files changed, 7 insertions, 2 deletions
diff --git a/sbin/Makefile b/sbin/Makefile
index 17ac987ba06..ccdd03be28a 100644
--- a/sbin/Makefile
+++ b/sbin/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.65 2003/02/24 01:18:03 deraadt Exp $
+# $OpenBSD: Makefile,v 1.66 2003/05/20 05:05:17 tedu Exp $
# Not ported: XNSrouted enpload scsiformat startslip
# Missing: icheck
@@ -18,6 +18,7 @@ SUBDIR+= mount_kernfs
# mount_mfs -> newfs
SUBDIR+= mount_msdos newfs_msdos fsck_msdos
SUBDIR+= mount_nfs
+SUBDIR+= mount_ntfs
SUBDIR+= mount_null
SUBDIR+= mount_portal
SUBDIR+= mount_procfs
diff --git a/sbin/mount_ntfs/Makefile b/sbin/mount_ntfs/Makefile
index bca6ccfc148..b70fb2340b4 100644
--- a/sbin/mount_ntfs/Makefile
+++ b/sbin/mount_ntfs/Makefile
@@ -1,8 +1,12 @@
-# $OpenBSD: Makefile,v 1.2 2003/05/20 03:19:57 tedu Exp $
+# $OpenBSD: Makefile,v 1.3 2003/05/20 05:05:17 tedu Exp $
+.if (${MACHINE} == "i386")
PROG= mount_ntfs
SRCS= mount_ntfs.c getmntopts.c
MAN= mount_ntfs.8
+.else
+NOPROG=
+.endif
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${MOUNT}