From owner-freebsd-current@FreeBSD.ORG Thu Dec 4 06:23:01 2003 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 7C5C716A4CE; Thu, 4 Dec 2003 06:23:01 -0800 (PST) Received: from ei.bzerk.org (ei.xs4all.nl [213.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43FB43FEC; Thu, 4 Dec 2003 06:22:49 -0800 (PST) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.12.10/8.12.10) with ESMTP id hB4EOWCB003920; Thu, 4 Dec 2003 15:24:32 +0100 (CET) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.12.10/8.12.10/Submit) id hB4EOWgr003919; Thu, 4 Dec 2003 15:24:32 +0100 (CET) (envelope-from mail25@bzerk.org) X-Authentication-Warning: ei.bzerk.org: bulk set sender to mail25@bzerk.org using -f Date: Thu, 4 Dec 2003 15:24:32 +0100 From: Ruben de Groot To: Peter Edwards Message-ID: <20031204142432.GA3846@ei.bzerk.org> References: <3FCF32E2.9050303@openet-telecom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3FCF32E2.9050303@openet-telecom.com> User-Agent: Mutt/1.4.1i cc: Robert Watson cc: current@freebsd.org cc: Kent Stewart Subject: Re: installworld to DESTDIR: touch: not found 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: Thu, 04 Dec 2003 14:23:01 -0000 On Thu, Dec 04, 2003 at 01:13:06PM +0000, Peter Edwards typed: > Robert Watson wrote: > > >On Sat, 29 Nov 2003, Kent Stewart wrote: > > > > > > > >>This kind of error frequently happens when your clock is off. Make > >>thinks the date of the cvsuped source is newer than the file it created > >>and tries to create it again. > >> > >>Do you run cmos at UTC or local. If local, did you adjkerntz -i. > >> > >> > > > >A few people have suggested this. System clock runs UTC, and it uses ntp; > >as far as I can tell, there were no interesting time shifts during the > >build. All file systems are local not NFS, so that rules out > >client/server timestamp problems. I'm blowing away my object tree and > >will try to buildworld again and see what happens. > > > > > > > I recently had an issue with installworld and DESTDIR with a 5.1-RELEASE > source tree. I concluded after some brief reads of the make magic that I > needed to set "MAKEOBJDIRPREFIX" before it'd work, even if it was just > set to "/usr/obj". Sorry for the sketchiness, and I don't actually have > a world built into /usr/obj to try this out without burning CPU cycles > for an hour or so. Doesn't work here. I'm having the same problem. This simple change works for me: --- Makefile.inc1.orig Thu Sep 25 16:09:00 2003 +++ Makefile.inc1 Thu Oct 2 03:14:00 2003 @@ -401,7 +401,7 @@ for prog in [ awk cap_mkdb cat chflags chmod chown \ date echo egrep find grep \ ln make mkdir mtree mv pwd_mkdb rm sed sh sysctl \ - test true uname wc zic; do \ + test touch true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ done cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//} > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"