From owner-svn-src-head@FreeBSD.ORG Sat Jul 12 00:17:36 2014 Return-Path: Delivered-To: svn-src-head@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 587CE544 for ; Sat, 12 Jul 2014 00:17:36 +0000 (UTC) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) (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 E13B5274B for ; Sat, 12 Jul 2014 00:17:35 +0000 (UTC) Received: by mail-wi0-f182.google.com with SMTP id d1so26881wiv.15 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=E6QtVr7LZPUYavTchdQLwk+5jPyiT5uu5dyagijDZsKorSAEbdOl6GwJNoy2Fg/jPj 9Sfs6CC8t4nckMdclcyEVLn1RrrVMsN9Xq8GM2D1nRbPOT3iinkt+YvZdZEwLA+DpHnM zwpQuzVF4lsM/vBmLJLC8RqTDWkF0zohnZ8IPXWdxeSbFXDkKkNUNLBQDDNCAuOTHN/i yfHIOJ/PDfpW1R0GlIr1Z+Xh2Rw5fFpr+1hjgHfk1U774H218i3M26y0/acPrL+fu6Qp w1R8k1t1Za8U+Hjpp50e4p5DB8yq4YkYSWdeMfsFyX858TsMEZKn4APEDN/AA+4dzuT/ mfzg== X-Gm-Message-State: ALoCoQk/TkAU1qZJT7NNF3Cr5psBRaixGCqoJVEdbGc065VF7jYCYdQGwFhzXnQRZ1+mPQti+Vx/ 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-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current 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...