diff options
author | imp <imp@FreeBSD.org> | 2010-08-26 05:25:51 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-08-26 05:25:51 +0000 |
commit | 61dc20268cc1765a4a6da507e317e05bb2576688 (patch) | |
tree | d0b56c1a86ff7263b45e7de787bd519fe69e1050 /usr.sbin/Makefile | |
parent | 17c74826a504c84f45847079c93abdc7c97f54db (diff) | |
download | FreeBSD-src-61dc20268cc1765a4a6da507e317e05bb2576688.zip FreeBSD-src-61dc20268cc1765a4a6da507e317e05bb2576688.tar.gz |
Ugly kludge to paper over some kind of ld bug and/or misuse: don't
build uathload on mips n64 either.
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index e658fed..37ab863 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -412,7 +412,8 @@ _crunch= crunch .endif .if ${MK_USB} != "no" -.if ${MACHINE_ARCH} != "ia64" +.if ${MACHINE_ARCH} != "ia64" && \ + !(${MACHINE_ARCH} == "mips" && ${TARGET_ABI} == "n64") _uathload= uathload .endif _uhsoctl= uhsoctl |