Date: Thu, 26 Aug 2010 05:25:51 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211832 - head/usr.sbin Message-ID: <201008260525.o7Q5PpGu032625@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Thu Aug 26 05:25:51 2010 New Revision: 211832 URL: http://svn.freebsd.org/changeset/base/211832 Log: Ugly kludge to paper over some kind of ld bug and/or misuse: don't build uathload on mips n64 either. Modified: head/usr.sbin/Makefile Modified: head/usr.sbin/Makefile ============================================================================== --- head/usr.sbin/Makefile Thu Aug 26 05:16:00 2010 (r211831) +++ head/usr.sbin/Makefile Thu Aug 26 05:25:51 2010 (r211832) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008260525.o7Q5PpGu032625>