From owner-freebsd-stable@freebsd.org Fri Oct 30 13:37:00 2015 Return-Path: Delivered-To: freebsd-stable@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 93457A21E4F for ; Fri, 30 Oct 2015 13:37:00 +0000 (UTC) (envelope-from herbert@oslo.ath.cx) Received: from oslo.ath.cx (oslo.ath.cx [144.76.166.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DC2B1160; Fri, 30 Oct 2015 13:37:00 +0000 (UTC) (envelope-from herbert@oslo.ath.cx) Received: from oslo.ath.cx (localhost [IPv6:::1]) by oslo.ath.cx (Postfix) with SMTP id 910A21557; Fri, 30 Oct 2015 14:36:56 +0100 (CET) Date: Fri, 30 Oct 2015 14:36:56 +0100 From: "Herbert J. Skuhra" To: Lev Serebryakov Cc: freebsd-stable Subject: Re: 10-STABLE buildworld fails at very early stage Message-ID: <20151030133656.GC27206@oslo.ath.cx> References: <56322C32.3050702@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56322C32.3050702@FreeBSD.org> User-Agent: Mutt/1.5.24+24 (41af5a753d6f) (2015-08-30) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2015 13:37:00 -0000 On Thu, Oct 29, 2015 at 05:24:50PM +0300, Lev Serebryakov wrote: > > I have this in /etc/src.conf (it is only one line here): > > MAKEOBJDIRPREFIX=/usr/home/build/obj > > > % cd /usr/src > % sudo svn up > Updating '.': > At revision 290139. > % sudo make buildworld > [one screen of output] > set -e; cd /usr/src/tools/build; make buildincludes; make installinclude > s > sh /usr/src/tools/install.sh -C -o root -g wheel -m 444 libegacy.a > /usr/home/build/obj/legacy/usr/lib > install: /usr/home/build/obj/legacy/usr/lib: No such file or directory > *** Error code 71 > > Stop. > make[3]: stopped in /usr/src/tools/build > *** Error code 1 > % uname -v > FreeBSD 10.2-PRERELEASE #7 r286065: Thu Jul 30 21:27:35 MSK 2015 > root@:/usr/obj/usr/src/sys/BLOB Does it work if you do: % setenv MAKEOBJDIRPREFIX /usr/home/build/obj >From man make.conf(5): CAVEATS Note, that MAKEOBJDIRPREFIX and MAKEOBJDIR are environment variables and should not be set in make.conf or as command line arguments to make(1), but in make's environment. -- Herbert