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

Stefan Esser se at FreeBSD.org
Tue May 6 12:31:18 UTC 2014


Author: se
Date: Tue May  6 12:31:17 2014
New Revision: 265436
URL: http://svnweb.freebsd.org/changeset/base/265436

Log:
  Fix include statement to accept src.opts.mk from a source directory
  instead of from /usr/share/mk.
  
  I'm not sure that this will let buildworld complete on a system with
  no installed src.opts.mk (make buildworld is still running), but the
  tinderbox builds are all failing earlyon without this patch.

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

Modified: head/usr.bin/bmake/Makefile.inc
==============================================================================
--- head/usr.bin/bmake/Makefile.inc	Tue May  6 12:20:07 2014	(r265435)
+++ head/usr.bin/bmake/Makefile.inc	Tue May  6 12:31:17 2014	(r265436)
@@ -1,6 +1,6 @@
 # $FreeBSD$ 
 
-.include "src.opts.mk"
+.include <src.opts.mk>
 
 .if defined(.PARSEDIR)
 # make sure this is available to unit-tests/Makefile


More information about the svn-src-head mailing list