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

Xin LI delphij at FreeBSD.org
Thu May 16 22:25:17 UTC 2013


Author: delphij
Date: Thu May 16 22:25:17 2013
New Revision: 250721
URL: http://svnweb.freebsd.org/changeset/base/250721

Log:
  Similar to r250719: guard against MK_BMAKE not being defined.

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

Modified: head/usr.bin/bmake/Makefile.inc
==============================================================================
--- head/usr.bin/bmake/Makefile.inc	Thu May 16 21:27:47 2013	(r250720)
+++ head/usr.bin/bmake/Makefile.inc	Thu May 16 22:25:17 2013	(r250721)
@@ -7,7 +7,7 @@
 .export SRCTOP
 .endif
 
-.if ${MK_BMAKE} != "no"
+.if defined(MK_BMAKE) && ${MK_BMAKE} != "no"
 PROG= make
 .endif
 


More information about the svn-src-all mailing list