Date: Tue, 6 May 2014 12:31:17 +0000 (UTC) From: Stefan Esser <se@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265436 - head/usr.bin/bmake Message-ID: <201405061231.s46CVH1j087258@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405061231.s46CVH1j087258>