Re: The correct way to run make

2004-05-15 Thread Henrik W Lund
Subject: Re: The correct way to run make From: Android66 [EMAIL PROTECTED] Date: Fri, 14 May 2004 19:50:26 +0200 To: Antoine Jacoutot [EMAIL PROTECTED] To: Antoine Jacoutot [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Often you

The correct way to run make

2004-05-14 Thread Gerard Samuel
Looking for an official answer, as I think I've used multiple ways to apply switches to make when building ports in the past Is it - a) make --SOMEOPTION=yes b) make --SOMEOPTION=yes c) make SOMEOPTION=yes Thanks ___ [EMAIL PROTECTED] mailing

Re: The correct way to run make

2004-05-14 Thread Gerard Samuel
On Friday 14 May 2004 01:17 pm, Gerard Samuel wrote: Looking for an official answer, as I think I've used multiple ways to apply switches to make when building ports in the past Is it - a) make --SOMEOPTION=yes b) make --SOMEOPTION=yes That should be - b) make -SOMEOPTION=yes c)

Re: The correct way to run make

2004-05-14 Thread Antoine Jacoutot
On Friday 14 May 2004 19:17, Gerard Samuel wrote: a) make --SOMEOPTION=yes b) make --SOMEOPTION=yes c) make SOMEOPTION=yes I'm not sure there's an official way, but I think you can use whatever: make -DOPTION make OPTION=1 make OPTION=yes ___

Re: The correct way to run make

2004-05-14 Thread Android66
Often you need to specify values, like for postgresql: make PREFIX=/some/other/dir And here's another question. I always use the same options for make, make install and make clean, ie: make PREFIX=/some/other/dir make PREFIX=/some/other/dir install make PREFIX=/some/other/dir clean This is

Re: The correct way to run make

2004-05-14 Thread Antoine Jacoutot
On Friday 14 May 2004 19:50, Android66 wrote: Often you need to specify values, like for postgresql: make PREFIX=/some/other/dir I've never used PREFIX as a make option. I always use the default which usually is /usr/local (otherwise, I think it is defined in the port Makefile). Antoine

Re: The correct way to run make

2004-05-14 Thread Gerard Samuel
On Friday 14 May 2004 01:26 pm, Antoine Jacoutot wrote: On Friday 14 May 2004 19:17, Gerard Samuel wrote: a) make --SOMEOPTION=yes b) make --SOMEOPTION=yes c) make SOMEOPTION=yes I'm not sure there's an official way, but I think you can use whatever: make -DOPTION make OPTION=1

Re: The correct way to run make

2004-05-14 Thread Mike Hogsett
Im giving up for now. Tried to build mozilla with - make -DWITHOUT_MAILNEWS=yes -DWITHOUT_LDAP=yes -DWITHOUT_CHATZILLA=yes instal l and it still has the mail and chatzilla modules installed. Maybe Ill experiment with it later (like when Im sleeping) If you are disabling all of that why

Re: The correct way to run make

2004-05-14 Thread Gerard Samuel
On Friday 14 May 2004 03:24 pm, Mike Hogsett wrote: Im giving up for now. Tried to build mozilla with - make -DWITHOUT_MAILNEWS=yes -DWITHOUT_LDAP=yes -DWITHOUT_CHATZILLA=yes instal l and it still has the mail and chatzilla modules installed. Maybe Ill experiment with it later (like

Re: The correct way to run make

2004-05-14 Thread Antoine Jacoutot
Selon Gerard Samuel [EMAIL PROTECTED]: Im giving up for now. Tried to build mozilla with - make -DWITHOUT_MAILNEWS=yes -DWITHOUT_LDAP=yes -DWITHOUT_CHATZILLA=yes install and it still has the mail and chatzilla modules installed. Maybe Ill experiment with it later (like when Im sleeping)

Re: The correct way to run make

2004-05-14 Thread Gerard Samuel
On Friday 14 May 2004 03:55 pm, Antoine Jacoutot wrote: Selon Gerard Samuel [EMAIL PROTECTED]: Im giving up for now. Tried to build mozilla with - make -DWITHOUT_MAILNEWS=yes -DWITHOUT_LDAP=yes -DWITHOUT_CHATZILLA=yes install and it still has the mail and chatzilla modules installed.

Re: The correct way to run make

2004-05-14 Thread Malcolm Kay
On Saturday 15 May 2004 04:43, Gerard Samuel wrote: On Friday 14 May 2004 01:26 pm, Antoine Jacoutot wrote: On Friday 14 May 2004 19:17, Gerard Samuel wrote: a) make --SOMEOPTION=yes b) make --SOMEOPTION=yes c) make SOMEOPTION=yes I'm not sure there's an official way, but I