diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-19 01:29:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-19 01:29:00 +0000 |
commit | c765cf978903d347caa69716996ff9a98acfe094 (patch) | |
tree | 4dcc905e260ebdaa605eda8b26a0c10cea9356b4 /usr.sbin/fdformat | |
parent | 46911b0071ccd5e207be26083b1d9b72aa6625f5 (diff) |
fdformat on amd64 too
Diffstat (limited to 'usr.sbin/fdformat')
-rw-r--r-- | usr.sbin/fdformat/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/fdformat/Makefile b/usr.sbin/fdformat/Makefile index 7d074d91680..852dc06064e 100644 --- a/usr.sbin/fdformat/Makefile +++ b/usr.sbin/fdformat/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.4 2005/03/09 18:41:50 miod Exp $ +# $OpenBSD: Makefile,v 1.5 2005/09/19 01:28:59 deraadt Exp $ -.if ${MACHINE} == "i386" || ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" +.if ${MACHINE} == "i386" || ${MACHINE} == "sparc" || \ + ${MACHINE} == "sparc64" || ${MACHINE} == "amd64" PROG= fdformat DPADD= ${LIBUTIL} LDADD= -lutil |