From owner-freebsd-questions Sun Feb 25 0:18:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id BB81537B503 for ; Sun, 25 Feb 2001 00:18:48 -0800 (PST) (envelope-from dima@unixfreak.org) Received: from hornet.unixfreak.org (hornet [63.198.170.140]) by bazooka.unixfreak.org (Postfix) with ESMTP id 7CCFF3E02; Sun, 25 Feb 2001 00:18:48 -0800 (PST) To: Kris Kennaway Cc: Chris Byrnes , questions@freebsd.org Subject: Re: /tmp files In-Reply-To: Message from Kris Kennaway of "Sat, 24 Feb 2001 23:07:52 PST." <20010224230752.A947@mollari.cthul.hu> Date: Sun, 25 Feb 2001 00:18:48 -0800 From: Dima Dorfman Message-Id: <20010225081848.7CCFF3E02@bazooka.unixfreak.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Sat, Feb 24, 2001 at 07:31:20PM -0600, Chris Byrnes wrote: > > > Out of curiosity, I was checking around in /tmp and found this stuff. > > > > Any idea why it's there? > > You interrupted a buildworld at the wrong phase. ITYM installworld. From Makefile.inc1: installworld: mkdir -p ${INSTALLTMP} for prog in [ awk cat chflags chmod chown date echo egrep find grep \ install ln make makewhatis mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ done (${INSTALLTMP} is set earlier to /tmp/install.) I suppose it's possible that buildworld does something similar, but then why would installworld re-do it? Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message