FYI: fix wrong $@ in shell wrapper

2006-05-18 Thread Ralf Wildenhues
Nesting quotes like this: $ECHO "$0: cannot exec $program ${1+"$@"}" is not portable. Furthermore, our $ECHO may get only one argument, so word splitting (which is what $@ is for) isn't right here anyway. I've applied the fixes below to HEAD and branch-1-5, respectively. Cheers, Ralf HEAD:

Re: FYI: Ignoring SIGPIPE in libtoolize

2006-05-18 Thread Behdad Esfahbod
On Thu, 18 May 2006, Ralf Wildenhues wrote: > Hi Behdad, > > * Behdad Esfahbod wrote on Wed, Apr 05, 2006 at 10:39:30AM CEST: > > On Wed, 5 Apr 2006, Ralf Wildenhues wrote: > > > * Behdad Esfahbod wrote on Wed, Apr 05, 2006 at 08:25:41AM CEST: > > > > > > > > In GNOME project, we have severl machi

FYI: Ignoring SIGPIPE in libtoolize

2006-05-18 Thread Ralf Wildenhues
Hi Behdad, * Behdad Esfahbod wrote on Wed, Apr 05, 2006 at 10:39:30AM CEST: > On Wed, 5 Apr 2006, Ralf Wildenhues wrote: > > * Behdad Esfahbod wrote on Wed, Apr 05, 2006 at 08:25:41AM CEST: > > > > > > In GNOME project, we have severl machines running as tinderboxes, > > > continuously building al

FYI: HEAD: bump libtool.m4 serial

2006-05-18 Thread Ralf Wildenhues
The compile time regression fix introduced a new macro in libtool.m4, using one from before that patch will break with the newer ltmain.sh. So, I'm bumping the serial of libtool.m4 now to reflect this. (I stumbled over this while trying to use it.) Cheers, Ralf * libltdl/m4/libtool.m4: Bu

Re: Add $CPPFLAGS $CFLAGS to early-libtool.at

2006-05-18 Thread Ralf Wildenhues
Hi Albert, * Albert Chin wrote on Thu, May 18, 2006 at 11:04:47AM CEST: > > 2005-06-18 Albert Chin-A-Young <[EMAIL PROTECTED]> > > * tests/early-libtool.at: Pass $CPPFLAGS and $CFLAGS to > compiler when compiling for extra flags that might be > needed for ANSI-compliance, 64-b

Add $CPPFLAGS $CFLAGS to early-libtool.at

2006-05-18 Thread Albert Chin
The HP compiler on HP-UX 10.20 doesn't operate in ANSI mode by default. You need to add -Ae to $CFLAGS. However, tests/early-libtool.at assumes the compiler is ANSI-compliant by default. This causes test 37 and 38 to fail on this platform because the .c files compiled require an ANSI compiler. 200