aboutsummaryrefslogtreecommitdiff
path: root/sbin/bsdlabel/Makefile
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-05-23 06:08:28 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-05-23 06:08:28 +0000
commit59fb3d10558eb781537bca22d590a95e4cbc7afb (patch)
tree2509494dbf9212beeca08a6ba8968055ce3a9b4f /sbin/bsdlabel/Makefile
parent637068b1d3222059800882e618748bc655cd8522 (diff)
downloadsrc-59fb3d10558eb781537bca22d590a95e4cbc7afb.tar.gz
src-59fb3d10558eb781537bca22d590a95e4cbc7afb.zip
Add amd64 to the MACHINE_ARCH list of systems that link bsdlabel to
disklabel. I just got burnt again by having an old disklabel binary kicking around. Discussed with: phk Approved by: re (safe amd64 stuff)
Notes
Notes: svn path=/head/; revision=115254
Diffstat (limited to 'sbin/bsdlabel/Makefile')
-rw-r--r--sbin/bsdlabel/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/bsdlabel/Makefile b/sbin/bsdlabel/Makefile
index d667081ed895..92250ae06e0f 100644
--- a/sbin/bsdlabel/Makefile
+++ b/sbin/bsdlabel/Makefile
@@ -8,7 +8,8 @@ SRCS= bsdlabel.c geom_bsd_enc.c
#MAN= bsdlabel.5
MAN+= bsdlabel.8
-.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "alpha"
+.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "alpha" || \
+ ${MACHINE_ARCH} == "amd64"
LINKS= ${BINDIR}/bsdlabel ${BINDIR}/disklabel
MLINKS= bsdlabel.8 disklabel.8
.endif