That won't fix fmake...
> On Jun 14, 2015, at 15:36, Craig Rodrigues <[email protected]> wrote: > > Author: rodrigc > Date: Sun Jun 14 22:36:27 2015 > New Revision: 284394 > URL: https://svnweb.freebsd.org/changeset/base/284394 > > Log: > If MK_META_MODE is unset, assume a value of no. > > This is needed to build HEAD on FreeBSD 10.1, > which has bmake, but does not have > /usr/share/mk/src.opts.mk > > Reviewed by: sjg > Reported by: jenkins > > Modified: > head/Makefile > > Modified: head/Makefile > ============================================================================== > --- head/Makefile Sun Jun 14 22:14:00 2015 (r284393) > +++ head/Makefile Sun Jun 14 22:36:27 2015 (r284394) > @@ -99,7 +99,7 @@ > # > # For more information, see the build(7) manual page. > # > -.if ${MK_META_MODE} == "yes" > +.if ${MK_META_MODE:Uno} == "yes" > # targets/Makefile plays the role of top-level > .include "targets/Makefile" > .else > _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
