From owner-freebsd-current@FreeBSD.ORG Mon Oct 18 19:49:35 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 870ED16A4CE; Mon, 18 Oct 2004 19:49:35 +0000 (GMT) Received: from smradoch.ath.cx (r2g224.chello.upc.cz [62.245.70.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3564743D49; Mon, 18 Oct 2004 19:49:35 +0000 (GMT) (envelope-from neuhauser@chello.cz) Received: by smradoch.ath.cx (Postfix, from userid 1001) id 51BAB1F87BED; Mon, 18 Oct 2004 21:49:34 +0200 (CEST) Date: Mon, 18 Oct 2004 21:49:34 +0200 From: Roman Neuhauser To: Ruslan Ermilov , freebsd-current Message-ID: <20041018194934.GC4968@isis.wad.cz> Mail-Followup-To: Ruslan Ermilov , freebsd-current References: <20041018161249.GA2126@isis.wad.cz> <20041018174945.GC89681@ip.net.ua> <20041018191124.GA4968@isis.wad.cz> <20041018192405.GB4968@isis.wad.cz> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: <20041018192405.GB4968@isis.wad.cz> User-Agent: Mutt/1.5.6i Subject: Re: 5.3-BETA7 make release "env: not found" errors X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2004 19:49:35 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline # neuhauser@chello.cz / 2004-10-18 21:24:05 +0200: > # neuhauser@chello.cz / 2004-10-18 21:11:24 +0200: > > # ru@freebsd.org / 2004-10-18 20:49:45 +0300: > > > On Mon, Oct 18, 2004 at 06:12:49PM +0200, Roman Neuhauser wrote: > > > > cd /usr/src; make -f Makefile.inc1 distribute > > > > env: not found > > > > > > I was responsible for and aware of these warnings, > > > but have been ignoring them until now. Thanks for > > > reminding! They were mostly harmless, but anyway, > > > a fix is now committed as src/Makefile,v 1.309. > > > > can I proceed with the built release, or should I copy the env > > binary to one of the directories listed in $PATH before running > > make rerelease? AFAICS, the at least five targets haven't been > > built. will I bee missing any files? > > I'm rebuilding the release target with src/Makefile:1.309 instead. there's another in src/Makefile.inc1. see the attached file. -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="src::Makefile.inc._MAKEOBJDIRPREFIX-env.patch" --- Makefile.inc1.old Mon Oct 18 19:31:28 2004 +++ Makefile.inc1 Mon Oct 18 19:31:34 2004 @@ -90,7 +90,7 @@ .endif MAKEOBJDIRPREFIX?= /usr/obj -_MAKEOBJDIRPREFIX!= env -i PATH=${PATH} MAKEFLAGS="${.MAKEFLAGS}" ${MAKE} \ +_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} MAKEFLAGS="${.MAKEFLAGS}" ${MAKE} \ -f /dev/null -V MAKEOBJDIRPREFIX dummy .if !empty(_MAKEOBJDIRPREFIX) .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\ --/04w6evG8XlLl3ft--