Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Aug 2010 15:49:52 +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: r211846 - head/usr.sbin
Message-ID:  <201008261549.o7QFnqRF046937@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008261549.o7QFnqRF046937>