summaryrefslogtreecommitdiffstats
path: root/sbin/Makefile
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2004-05-01 18:17:23 +0000
committermarcel <marcel@FreeBSD.org>2004-05-01 18:17:23 +0000
commit7e187e2ba94df9c1f8f68519ee9e9fa9889c874d (patch)
tree214cbd6c478124d8807ccd2ceb51b81496bd2aac /sbin/Makefile
parent6bc8b2bc2cfe83d697c27b25dac9afb28fc59ca2 (diff)
downloadFreeBSD-src-7e187e2ba94df9c1f8f68519ee9e9fa9889c874d.zip
FreeBSD-src-7e187e2ba94df9c1f8f68519ee9e9fa9889c874d.tar.gz
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.
Diffstat (limited to 'sbin/Makefile')
-rw-r--r--sbin/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/Makefile b/sbin/Makefile
index b916a88..ec6ccd3 100644
--- a/sbin/Makefile
+++ b/sbin/Makefile
@@ -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>
OpenPOWER on IntegriCloud