Build gpt(8) on all platforms, except sparc64. Currently gpt(8) is

not endian agnostic and thus will create big-endian GPTs on sparc64.
This we don't support. So, before gpt(8) can be used on a big-endian
machine, it has to deal with the endianness.
This commit is contained in:
Marcel Moolenaar 2004-05-01 18:17:23 +00:00
parent 26e2809625
commit 226d45b5f8

@ -134,13 +134,15 @@ _sconfig= sconfig
.if ${MACHINE_ARCH} == "amd64"
_fdisk= fdisk
_gpt= gpt
.endif
.if ${MACHINE_ARCH} == "ia64"
_fdisk= fdisk
_gpt= gpt
_mca= mca
.endif
.if ${MACHINE_ARCH} != "sparc64"
_gpt= gpt
.endif
.include <bsd.subdir.mk>