svn commit: r291105 - head/usr.sbin

Bryan Drewery bdrewery at FreeBSD.org
Fri Nov 20 17:52:48 UTC 2015


Author: bdrewery
Date: Fri Nov 20 17:52:46 2015
New Revision: 291105
URL: https://svnweb.freebsd.org/changeset/base/291105

Log:
  Fix not skipping uathload for mips after r291021.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/usr.sbin/Makefile.mips

Modified: head/usr.sbin/Makefile.mips
==============================================================================
--- head/usr.sbin/Makefile.mips	Fri Nov 20 16:43:21 2015	(r291104)
+++ head/usr.sbin/Makefile.mips	Fri Nov 20 17:52:46 2015	(r291105)
@@ -3,5 +3,5 @@
 SUBDIR+=	ofwdump
 # uathload broken for n32 and n64 due to toolchain issues, only build for o32
 .if ${MACHINE_ARCH} != "mips" && ${MACHINE_ARCH} != "mipsel"
-SUBDIR:=	${SUBDIR:Nuathload}
+SUBDIR.yes:=	${SUBDIR.yes:Nuathload}
 .endif


More information about the svn-src-head mailing list