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:
parent
26e2809625
commit
226d45b5f8
@ -134,13 +134,15 @@ _sconfig= sconfig
|
|||||||
|
|
||||||
.if ${MACHINE_ARCH} == "amd64"
|
.if ${MACHINE_ARCH} == "amd64"
|
||||||
_fdisk= fdisk
|
_fdisk= fdisk
|
||||||
_gpt= gpt
|
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE_ARCH} == "ia64"
|
.if ${MACHINE_ARCH} == "ia64"
|
||||||
_fdisk= fdisk
|
_fdisk= fdisk
|
||||||
_gpt= gpt
|
|
||||||
_mca= mca
|
_mca= mca
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.if ${MACHINE_ARCH} != "sparc64"
|
||||||
|
_gpt= gpt
|
||||||
|
.endif
|
||||||
|
|
||||||
.include <bsd.subdir.mk>
|
.include <bsd.subdir.mk>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user