From owner-svn-src-all@freebsd.org Fri Jun 3 20:55:34 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EADE5B68A29; Fri, 3 Jun 2016 20:55:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qt0-x229.google.com (mail-qt0-x229.google.com [IPv6:2607:f8b0:400d:c0d::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A89C41E69; Fri, 3 Jun 2016 20:55:34 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-qt0-x229.google.com with SMTP id t13so1168108qtc.3; Fri, 03 Jun 2016 13:55:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=HWGEn3tjQ+r9gR6ZgUdItm3resf6jXDZafLJUhGKrBo=; b=bxRo3sl4Z2cZzkGMDDLEZ0YEuR9iqbQzy2kmGAPq8k1fEKs384PPDdxtyVoDMFK/dP 5aDhLrzXoqmvo3TrQUwA8+hQEyfVz4VCG5VD4xVnbyn1VFsTfvf+GP0/0dyCp9Z2l33R pE5HXFCZOh0UyY6MLglWUSY0Q/ydsMbRzIVuVbRFUDaMF8DeERdTHcDr5CHmt2pXKlmA O7SvKvqRLbJICNzFTxTg/anfJHofc8cAKLYOU9BLrP2rQVA9IFXCIkT+MdnmfXZCpsEs iVduAJUCmtSMSaUh8ELLCU/6uvudP+Vh2NBe8+MoDMdqkwg0VSOUGOvU3mkeC640Hqy+ izEg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=HWGEn3tjQ+r9gR6ZgUdItm3resf6jXDZafLJUhGKrBo=; b=QGi5iPzcK1EHDEJnlR7sobX/f1eCN4Tt8MIIOyK6cRQhPxQiwHHbAjx7CuP0AnCbYw 5M9f2fUUzRJ+ZmTSWoGe4rTJGdOdmvQOVEyCcTwvm3W5rIbKVI5GkcFRCB7XTBS/HyKA 0WLO0P7JRFhCHCcmg1wLnxm0SmzdBBDCybFTX9cozWh6vqM66+DiWhxTyhDg5G0J+qj3 Dw7elz5blgda6EZ34be/tHt+yU4lfbqIFnLpgTbqMU31S6PEh3wusGmmg3LRTEz8Gg1F n9qo7Ht1rHXQqgGuBE+DuEgd2WXIw/DWFsy6YF+IAxuDQSgmWUaLeWOdGLNqv+2s+qi1 hlPg== X-Gm-Message-State: ALyK8tJ1UhoXDzaqjomobsmHLdLaRcUUbuIy07r25lqYZpb54kjeTezwzLWZCUJdUOn6fuSqxePrJrlgvBYRZQ== X-Received: by 10.237.41.5 with SMTP id s5mr5362789qtd.71.1464987333765; Fri, 03 Jun 2016 13:55:33 -0700 (PDT) MIME-Version: 1.0 Received: by 10.55.146.69 with HTTP; Fri, 3 Jun 2016 13:55:33 -0700 (PDT) In-Reply-To: <201606032049.u53KnnuL093930@repo.freebsd.org> References: <201606032049.u53KnnuL093930@repo.freebsd.org> From: Ngie Cooper Date: Fri, 3 Jun 2016 13:55:33 -0700 Message-ID: Subject: Re: svn commit: r301287 - head To: Bryan Drewery Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 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: Fri, 03 Jun 2016 20:55:35 -0000 On Fri, Jun 3, 2016 at 1:49 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Fri Jun 3 20:49:49 2016 > New Revision: 301287 > URL: https://svnweb.freebsd.org/changeset/base/301287 > > Log: > WITHOUT_CROSS_COMPILER: Fix installworld. > > Since no WORLDTMP/usr/bin/cc is created, cc cannot be found > during installworld time since /usr/bin is not in the PATH. > Pass along the known compiler metadata to allow installworld > to work. The same fix was used for WITH_SYSTEM_COMPILER. > > A better route would be to store a cookie in buildworld > containing this compiler metadata and then using that > at install time, rather than rerunning cc. > > Reported by: Mark Millard > Sponsored by: EMC / Isilon Storage Division Thank you. This should fix the Trebuca Canyon's I've been using.