Re: [patch] allow --with-pic to accept package names

2010-10-22 Thread Ollie Wild
On Thu, Oct 21, 2010 at 5:29 PM, Ollie Wild wrote: > > This is motivated by GCC.  We compile Fortran shared libraries which > must execute on systems with no libgfortrans.so.  The usual approach, > passing --with-pic to configure is undesirable because it reduces the > performance of other static

Re: [patch] allow --with-pic to accept package names

2010-10-22 Thread Peter Rosin
Hi Ollie, Den 2010-10-22 18:32 skrev Ollie Wild: > On Thu, Oct 21, 2010 at 5:29 PM, Ollie Wild wrote: >> 2010-10-21 Ollie Wild >> >>Modify --with-pic to support per-package configurations. >>* libltdl/m4/libtool.m4: Modify --with-pic to accept a list of >>package names

Re: [patch] allow --with-pic to accept package names

2010-10-22 Thread Eric Blake
On 10/22/2010 03:02 PM, Peter Rosin wrote: There is never any need to quote the right-hand side of assignments, unless you have literal whitespace in them. If you do a=foo; b=" bar"; c=$a$b; d=$c both $c and $d will be "foo bar". See 'Shell Substitutions' in the 'Portable Shell' chapter in