svn commit: r211832 - head/usr.sbin

Warner Losh imp at FreeBSD.org
Thu Aug 26 05:25:52 UTC 2010


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


More information about the svn-src-all mailing list