diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2007-12-09 19:48:56 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2007-12-09 19:48:56 +0000 |
commit | 10ca2c4be8512db63732b9cbeb51501255fadf20 (patch) | |
tree | 0306cf064750f08e994f8bfa02d3e53e5be3ff4c /sbin/mount_ntfs/Makefile | |
parent | aad4668a037adc0bad20a32c6bd9b8f9ed0f66df (diff) |
provide mount_ntfs(8) on alpha, it works out of the box for reading
Windows NT disks
ok deraadt@
manpage bits from jmc@
Diffstat (limited to 'sbin/mount_ntfs/Makefile')
-rw-r--r-- | sbin/mount_ntfs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_ntfs/Makefile b/sbin/mount_ntfs/Makefile index 57dcf4acdb2..c02e1c3c85c 100644 --- a/sbin/mount_ntfs/Makefile +++ b/sbin/mount_ntfs/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.6 2004/10/11 14:45:33 avsm Exp $ +# $OpenBSD: Makefile,v 1.7 2007/12/09 19:48:55 martin Exp $ -.if (${MACHINE} == "i386" || ${MACHINE} == "amd64") +.if (${MACHINE} == "alpha" || ${MACHINE} == "amd64" || ${MACHINE} == "i386") PROG= mount_ntfs SRCS= mount_ntfs.c getmntopts.c .else |