svn commit: r211846 - head/usr.sbin

Warner Losh imp at FreeBSD.org
Thu Aug 26 15:49:52 UTC 2010


Author: imp
Date: Thu Aug 26 15:49:52 2010
New Revision: 211846
URL: http://svn.freebsd.org/changeset/base/211846

Log:
  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.

Modified:
  head/usr.sbin/Makefile

Modified: head/usr.sbin/Makefile
==============================================================================
--- head/usr.sbin/Makefile	Thu Aug 26 14:54:12 2010	(r211845)
+++ head/usr.sbin/Makefile	Thu Aug 26 15:49:52 2010	(r211846)
@@ -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


More information about the svn-src-all mailing list