Subject: Re: MAKE BUILD question
To: Justin <justin@theprovider.com>
From: Simon Burge <simonb@telstra.com.au>
List: current-users
Date: 03/29/1999 10:41:00
"Justin" wrote:

> I am compiling -current, and I -do- have a DESTDIR set. After it states the
> build has finished, I go into DESTDIR/etc and it is nearly empty containing
> only 5 empty directories. DESTDIR/dev is also empty.. What is the propper
> syntax to install /etc and /dev after I have run 'make build'

( cd etc ; make distribution )

"make build" is relatively safe to run without setting DESTDIR - it
won't overwrite any existing config files.  Here's part of my crib sheet
for doing a full build and release set (note csh syntax!):

	cd /.../src
	setenv DESTDIR /.../destdir
	setenv RELEASEDIR /.../releasedir
	make build | & tee $DESTDIR/../blog.00
	cd etc
	make distribution INSTALL_DONE=1 |& tee $DESTDIR/../distlog.00
	cd ../distrib/sets
	sh maketars |& tee $DESTDIR/../setlog.00

After this, you'll end up with the binary sets in $RELEASEDIR.

Simon.