Re: How do I make install clean a port in the background

2007-08-11 Thread Rakhesh Sasidharan
A good ideea would be to build screen static. In case you update your system, it is possible that the libraries on which screen depends might be deleted. To do so # make CONFIGURE_ENV=LDFLAGS="-static" build # make install that will create a binary screen which is not dynamically linked with the

Re: How do I make install clean a port in the background

2007-08-10 Thread Pollywog
On Friday 10 August 2007 01:29:02 Valentin Bud wrote: > > A good ideea would be to build screen static. In case you > update your system, it is possible that the libraries on which screen > depends might be deleted. To do so > # make CONFIGURE_ENV=LDFLAGS="-static" build > # make install > that

Re: How do I make install clean a port in the background

2007-08-10 Thread Robert Huff
Wojciech Puchar writes: > > cd /usr/ports/www/apache22 > > make install clean & > > > > it returns the pid but then compiles in the foreground > > > > What am I doing wrong? > > > >/dev/null The /process/ is running in the background. The /output/ - stdout and stderr, fil

Re: How do I make install clean a port in the background

2007-08-10 Thread Wojciech Puchar
cd /usr/ports/www/apache22 make install clean & it returns the pid but then compiles in the foreground What am I doing wrong? /dev/null ? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: How do I make install clean a port in the background

2007-08-09 Thread Valentin Bud
On Friday 10 August 2007 12:13 am, Jonathan Horne wrote: > On Thursday 09 August 2007 15:31:01 Bill Moran wrote: > > In response to Reid Linnemann <[EMAIL PROTECTED]>: > > > Written by Sean Murphy on 08/09/07 15:15>> > > > > > > > How do I make install clean a port in the background? I used > > >

Re: How do I make install clean a port in the background

2007-08-09 Thread Jonathan Horne
On Thursday 09 August 2007 15:31:01 Bill Moran wrote: > In response to Reid Linnemann <[EMAIL PROTECTED]>: > > Written by Sean Murphy on 08/09/07 15:15>> > > > > > How do I make install clean a port in the background? I used > > > > > > cd /usr/ports/www/apache22 > > > make install clean & > > > >

Re: How do I make install clean a port in the background

2007-08-09 Thread Harry Jensen
On Thu, Aug 09, 2007 at 01:15:12PM -0700, Sean Murphy wrote: > How do I make install clean a port in the background? I used > > cd /usr/ports/www/apache22 > make install clean & It is in the background, but if there is output from the process, you will see it. A solution could be "make install

Re: How do I make install clean a port in the background

2007-08-09 Thread Bill Moran
In response to Reid Linnemann <[EMAIL PROTECTED]>: > Written by Sean Murphy on 08/09/07 15:15>> > > How do I make install clean a port in the background? I used > > > > cd /usr/ports/www/apache22 > > make install clean & > > > > it returns the pid but then compiles in the foreground > > > > Wh

Re: How do I make install clean a port in the background

2007-08-09 Thread Reid Linnemann
Written by Sean Murphy on 08/09/07 15:15>> How do I make install clean a port in the background? I used cd /usr/ports/www/apache22 make install clean & it returns the pid but then compiles in the foreground What am I doing wrong? ___ freebsd-questi