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)
This commit is contained in:
Peter Wemm 2003-05-23 06:08:28 +00:00
parent 637068b1d3
commit 59fb3d1055
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115254

View File

@ -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