From 59fb3d10558eb781537bca22d590a95e4cbc7afb Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 23 May 2003 06:08:28 +0000 Subject: [PATCH] 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) --- sbin/bsdlabel/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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