Willem Jan Palenstijn wrote:
On Tue, Jan 12, 2010 at 01:21:51AM -0800, Robert Bradshaw wrote:
Since the goal is to remove the -j flags, why not
MAKE=`echo $MAKE | sed -E "s/-j +[^ ]+|--jobs=[^ ]+//g"`
This way if any other flags were part of $MAKE they wouldn't get dropped
as well. (Not sure
Robert Bradshaw wrote:
Since the goal is to remove the -j flags, why not
MAKE=`echo $MAKE | sed -E "s/-j +[^ ]+|--jobs=[^ ]+//g"`
This way if any other flags were part of $MAKE they wouldn't get dropped
as well. (Not sure if Solaris can handle extended regex...but that' easy
to fix if it can'
On Tue, Jan 12, 2010 at 01:21:51AM -0800, Robert Bradshaw wrote:
> Since the goal is to remove the -j flags, why not
>
> MAKE=`echo $MAKE | sed -E "s/-j +[^ ]+|--jobs=[^ ]+//g"`
>
> This way if any other flags were part of $MAKE they wouldn't get dropped
> as well. (Not sure if Solaris can handle
Since the goal is to remove the -j flags, why not
MAKE=`echo $MAKE | sed -E "s/-j +[^ ]+|--jobs=[^ ]+//g"`
This way if any other flags were part of $MAKE they wouldn't get
dropped as well. (Not sure if Solaris can handle extended regex...but
that' easy to fix if it can't.)
- Robert
On Ja
On Mon, Jan 11, 2010 at 5:42 PM, William Stein wrote:
> Cool. Instead of suggesting people use bits of code like this in
> their spkg-install's, why don't we make a single *sage sh library*
> that gets used. It could start as a script
>
> local/bin/sage-spkg-lib
>
> that gets sourced before s
William Stein wrote:
On Mon, Jan 11, 2010 at 5:49 AM, Dr. David Kirkby
wrote:
Various bits of SAGE unset 'MAKE', mainly to stop parallel builds. That's a
nuisance to someone that might want to use a version of 'make' different
from the first one in their path.
A simple way around this, is the
On Mon, Jan 11, 2010 at 5:49 AM, Dr. David Kirkby
wrote:
> Various bits of SAGE unset 'MAKE', mainly to stop parallel builds. That's a
> nuisance to someone that might want to use a version of 'make' different
> from the first one in their path.
>
> A simple way around this, is the following bit o
Various bits of SAGE unset 'MAKE', mainly to stop parallel builds. That's a
nuisance to someone that might want to use a version of 'make' different from
the first one in their path.
A simple way around this, is the following bit of code, which preserves the
name or path of the make command,