diff options
author | peter <peter@FreeBSD.org> | 2003-05-23 06:08:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-05-23 06:08:28 +0000 |
commit | 4597dace1f5a6f643df3793d25794a57e110a1aa (patch) | |
tree | 2509494dbf9212beeca08a6ba8968055ce3a9b4f /sbin | |
parent | 4981efa79316b39f50aa111568693e9a83442475 (diff) | |
download | FreeBSD-src-4597dace1f5a6f643df3793d25794a57e110a1aa.zip FreeBSD-src-4597dace1f5a6f643df3793d25794a57e110a1aa.tar.gz |
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)
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/bsdlabel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/bsdlabel/Makefile b/sbin/bsdlabel/Makefile index d667081..92250ae 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 |