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

Bryan Drewery bdrewery at FreeBSD.org
Wed Sep 23 21:35:59 UTC 2015


Author: bdrewery
Date: Wed Sep 23 21:35:58 2015
New Revision: 288154
URL: https://svnweb.freebsd.org/changeset/base/288154

Log:
  Similar to r266147, don't define PROG in the test subdirs.
  
  Magic things happen when including bsd.prog.mk in them.
  
  Sponsored by:	EMC / Isilon Storage Division

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

Modified: head/usr.bin/bmake/Makefile.inc
==============================================================================
--- head/usr.bin/bmake/Makefile.inc	Wed Sep 23 21:08:52 2015	(r288153)
+++ head/usr.bin/bmake/Makefile.inc	Wed Sep 23 21:35:58 2015	(r288154)
@@ -7,7 +7,9 @@
 .export SRCTOP
 .endif
 
+.if exists(${.CURDIR}/tests)
 PROG= make
+.endif
 
 .if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no"
 NO_SHARED?=     YES


More information about the svn-src-head mailing list