From owner-freebsd-bugs@FreeBSD.ORG Sun Apr 14 06:20:52 2013 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3FAD6468 for ; Sun, 14 Apr 2013 06:20:52 +0000 (UTC) (envelope-from sjg@juniper.net) Received: from exprod7og109.obsmtp.com (exprod7og109.obsmtp.com [64.18.2.171]) by mx1.freebsd.org (Postfix) with ESMTP id 45AA628D for ; Sun, 14 Apr 2013 06:20:50 +0000 (UTC) Received: from P-EMHUB01-HQ.jnpr.net ([66.129.224.36]) (using TLSv1) by exprod7ob109.postini.com ([64.18.6.12]) with SMTP ID DSNKUWpKwovtMXi9f2M4tfjiqFo46wr7D01H@postini.com; Sat, 13 Apr 2013 23:20:52 PDT Received: from magenta.juniper.net (172.17.27.123) by P-EMHUB01-HQ.jnpr.net (172.24.192.33) with Microsoft SMTP Server (TLS) id 8.3.213.0; Sat, 13 Apr 2013 23:20:50 -0700 Received: from chaos.jnpr.net (chaos.jnpr.net [172.24.29.229]) by magenta.juniper.net (8.11.3/8.11.3) with ESMTP id r3E6Kn343945; Sat, 13 Apr 2013 23:20:49 -0700 (PDT) (envelope-from sjg@juniper.net) Received: from chaos.jnpr.net (localhost [127.0.0.1]) by chaos.jnpr.net (Postfix) with ESMTP id B0C8958097; Sat, 13 Apr 2013 23:20:49 -0700 (PDT) To: Garrett Cooper Subject: Re: conf/177845: WITH_BMAKE does not work on CURRENT In-Reply-To: <866FF12C-2525-4A59-B20B-39A0522D7B44@gmail.com> References: <201304140420.r3E4K0Et063274@freefall.freebsd.org> <9B5C1BF8-17FB-4718-8AF1-3F8F5E55DAB8@gmail.com> <20130414054224.6720958097@chaos.jnpr.net> <866FF12C-2525-4A59-B20B-39A0522D7B44@gmail.com> Comments: In-reply-to: Garrett Cooper message dated "Sat, 13 Apr 2013 22:54:41 -0700." From: "Simon J. Gerraty" X-Mailer: MH-E 7.82+cvs; nmh 1.3; GNU Emacs 22.3.1 Date: Sat, 13 Apr 2013 23:20:49 -0700 Message-ID: <20130414062049.B0C8958097@chaos.jnpr.net> MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-bugs@FreeBSD.org X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Apr 2013 06:20:52 -0000 On Sat, 13 Apr 2013 22:54:41 -0700, Garrett Cooper writes: >The tree is synched up to the latest head version. I'm suspecting it = >might be something to do with the changes made over the past 2 weeks in = >terms of /Makefile, but I could be wrong. I'll look into this further = >when I can.. I've just updated a tree to try to reproduce. Are you sure /usr/bin/make is bmake? I see lots of makefiles that invoke 'make' rather than ${MAKE}, so could imagine a problem if /usr/bin/make is *not* bmake. If WITH_BMAKE is set, src/Makefile will build bmake and use it as ${MAKEPATH}/make, but the PATH is not tweaked to ensure that that 'make' is found, so /usr/bin/make would get used. Also of course one must do a parallel build, to trigger that error about -J. Anyway I started a parallel buildworld with /usr/bin/make not bmake and the bug mentioned above not fixed to see if that causes the error you see...