From owner-svn-src-all@FreeBSD.ORG Sat Jul 12 00:17:36 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33F7F53E for ; Sat, 12 Jul 2014 00:17:36 +0000 (UTC) Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCFB82748 for ; Sat, 12 Jul 2014 00:17:35 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id hi2so27321wib.16 for ; Fri, 11 Jul 2014 17:17:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=c8I2ZYIFgWH+7qU2/fSvHC5uaNVYlxvUqueMVfxrQCc=; b=D4HrJFH0G1aZuP5HnY3a1BR7bm3cFEDoxQt3AC8TaZCVOOtF5NMzTYi4RcsdvVK5PR 6QC83UB4uEoM9R2xWgP9gXeE6a1CROXDqqhJ6n2dnRrADXR1c4Y/UbjN/xrcPC4+8BEW xAvOFRA5wguaITQJQxhAQXGx0g49dPKG/3Bz7dZ51rGu+4354oMfdVQyDlBwGAb81pao xWBJE6AxkTLzSWqcw53/RcWLt+0XE03bAQRKDBPLw5arcGjycTEtM6liVCWxyZCjbN1e nP0gsVtP4UaEyrngOwOyW54j0uTskoHP660574+qRishvH9qAHtY1JFYWm6mVeku7ceh xqlA== X-Gm-Message-State: ALoCoQlWJxtPagbGo0sEaWMzzUSsEhFe680egIiNbvLzutDPzgXphKu/SxqNiVTKCmCfhKaZByG2 X-Received: by 10.194.110.161 with SMTP id ib1mr2703627wjb.129.1405124247615; Fri, 11 Jul 2014 17:17:27 -0700 (PDT) MIME-Version: 1.0 Sender: jmmv@meroh.net Received: by 10.194.203.3 with HTTP; Fri, 11 Jul 2014 17:17:07 -0700 (PDT) X-Originating-IP: [184.153.117.174] In-Reply-To: References: <201406121854.s5CIsrmq000136@svn.freebsd.org> <20140612235647.GO1248@hub.FreeBSD.org> <20140613002017.GP1248@hub.FreeBSD.org> <20140709010719.GM1216@hub.FreeBSD.org> <20140709023222.GO1216@hub.FreeBSD.org> From: Julio Merino Date: Fri, 11 Jul 2014 20:17:07 -0400 X-Google-Sender-Auth: Kii3WJxYxdGS2am5LrG8SQWcLyY Message-ID: Subject: Re: svn commit: r267424 - in head: share/mk tools/build/options To: Glen Barber , Warner Losh Content-Type: text/plain; charset=UTF-8 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 00:17:36 -0000 On Tue, Jul 8, 2014 at 10:34 PM, Julio Merino wrote: > > OK. Regardless, I suppose that being able to build HEAD from the > supported releases is supposed to work? Even from 8.4? Will > investigate for 9.x. Alright. I could reproduce this... but it was not obvious. A "make buildworld" with WITH_TESTS=yes from 9.3_RC3 works *just fine*. The problem is that tinderbox is setting MAKESYSPATH=/path/to/src/share/mk and this seems to cause the build system to not compile and use the bmake that is in current, instead relying on the host make (/usr/bin/make). This is a problem because the -current *.test.mk use the :tW modifier which is not present in the bmake version shipped in 9.x. So what's the bug here? Should *.test.mk stop using :tW or is tinderbox broken because it's bypassing the build of a current bmake (which is bound to cause problems in an older system)? I'd call the bug is the latter because "make buildworld" works just fine...