From owner-freebsd-alpha Tue Nov 28 10: 8:11 2000 Delivered-To: freebsd-alpha@freebsd.org Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by hub.freebsd.org (Postfix) with ESMTP id 72D8837B402 for ; Tue, 28 Nov 2000 10:08:09 -0800 (PST) Received: from mail.cafes.net (mail.cafes.net [207.65.182.25]) by mail.cafes.net (8.9.3/8.9.3) with ESMTP id MAA14718; Tue, 28 Nov 2000 12:07:57 -0600 Date: Tue, 28 Nov 2000 12:07:57 -0600 (CST) From: Mike Eldridge To: Bill Woods Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: make world dies In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 28 Nov 2000, Bill Woods wrote: > on a FreeBSD 4.2-STABLE #5 dated Fri Nov 24 23:34:19 PST 2000 I was doing > a make world with source dated 11/27/2000 and I got this: And ideas ? [snip useless crap] > mkdir -p /tmp/install.55896 > 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` /tmp/install.55896; done > usage: cp [-R [-H | -L | -P]] [-f | -i] [-pv] src target > cp [-R [-H | -L | -P]] [-f | -i] [-pv] src1 ... srcN directory > *** Error code 64 This one's easy, even though I've never built a FreeBSD kernel or gotten in installed, for that matter (I wish there were more hours in the day). :-) Your problem is that cp failed, probably because which was unable to find one of the binaries in the list above. Open up your favorite editor and make a file called bleh.sh with the following in it: for i 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 zip; do which $i done then, at a shell: sh bleh.sh It *should* print out a bunch of filepaths, but you'll probably have one or more that aren't found, and which should bitch about it. Find the missing proggie and install it and build it again. Mike ----------------------------------------------------- Save the whales. Feed the hungry. Free the mallocs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message