diff options
author | imp <imp@FreeBSD.org> | 2010-08-26 15:49:52 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-08-26 15:49:52 +0000 |
commit | e25569777fbfcdb66edeb272f15299b906c76173 (patch) | |
tree | b95daf119fbb409f3af58d2a232d0ad626f9896d /usr.sbin/Makefile | |
parent | f119604fd5cb6b1d3a57df7846c1bb9c1aaa9d8f (diff) | |
download | FreeBSD-src-e25569777fbfcdb66edeb272f15299b906c76173.zip FreeBSD-src-e25569777fbfcdb66edeb272f15299b906c76173.tar.gz |
Make sure TARGET_ABI is defined. TARGET_ABI will die a horrible death
after we get all of TBEMD merged back into head, and make mips64 imply
n64, so don't bother to make this 100% pretty. You'll have to settle
for only 64% pretty.
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 37ab863..3012da0 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -413,7 +413,7 @@ _crunch= crunch .if ${MK_USB} != "no" .if ${MACHINE_ARCH} != "ia64" && \ - !(${MACHINE_ARCH} == "mips" && ${TARGET_ABI} == "n64") + !(${MACHINE_ARCH} == "mips" && defined(TARGET_ABI) && ${TARGET_ABI} == "n64") _uathload= uathload .endif _uhsoctl= uhsoctl |