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
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to