svn commit: r241612 - head/usr.bin/bmake

David E. O'Brien obrien at FreeBSD.org
Tue Oct 16 15:43:17 UTC 2012


Author: obrien
Date: Tue Oct 16 15:43:16 2012
New Revision: 241612
URL: http://svn.freebsd.org/changeset/base/241612

Log:
  Obey the value of "MK_BMAKE".

Modified:
  head/usr.bin/bmake/Makefile.inc

Modified: head/usr.bin/bmake/Makefile.inc
==============================================================================
--- head/usr.bin/bmake/Makefile.inc	Tue Oct 16 15:25:04 2012	(r241611)
+++ head/usr.bin/bmake/Makefile.inc	Tue Oct 16 15:43:16 2012	(r241612)
@@ -7,7 +7,7 @@
 .export SRCTOP
 .endif
 
-.if defined(MK_BMAKE)
+.if ${MK_BMAKE} != "no"
 PROG= make
 .endif
 


More information about the svn-src-head mailing list