Re: build system to DESTDIR

2008-07-11 Thread iiv
> On Friday 11 July 2008 11:08:04 [EMAIL PROTECTED] wrote: >> To build system for the diskless station, whether there are >> differences between: >> >> [in script] >> #!/bin/sh >> export DESTDIR=/usr/diskless >> cd /usr/src; make buildworld >> >> and >> >> [in csh] >> # setenv DESTDIR /usr/diskless

Re: build system to DESTDIR

2008-07-11 Thread Mel
On Friday 11 July 2008 11:08:04 [EMAIL PROTECTED] wrote: > To build system for the diskless station, whether there are > differences between: > > [in script] > #!/bin/sh > export DESTDIR=/usr/diskless > cd /usr/src; make buildworld > > and > > [in csh] > # setenv DESTDIR /usr/diskless > # cd /usr/s

build system to DESTDIR

2008-07-11 Thread iiv
To build system for the diskless station, whether there are differences between: [in script] #!/bin/sh export DESTDIR=/usr/diskless cd /usr/src; make buildworld and [in csh] # setenv DESTDIR /usr/diskless # cd /usr/src # make buildworld ___ freebsd-qu