Re: executable wrapper on mingw mangles arguments

2008-11-16 Thread Ralf Wildenhues
Hi Bruno, * Bruno Haible wrote on Fri, Nov 14, 2008 at 12:47:44PM CET: > Find attached the resulting logs (stdout+stderr, and > tests/testsuite.dir/36/testsuite.log). > > The test passes. But it also passes when I comment out the line > newargv = prepare_spawn (newargv); > in ltmain.sh and do a

Re: [PATCH] Fix --verbose option and add new --no-silent option

2008-11-16 Thread Ralf Wildenhues
Hi Charles, * Charles Wilson wrote on Sat, Nov 15, 2008 at 10:40:26AM CET: > * libltdl/config/ltmain.m4sh (usage): Document > new --no-silent/--no-quiet options. Spacing changes. > (func_enable_tag): Handle --no-silent/--no-quiet options. > Modified --verbose to actually activate opt_verbose. > Ne

Fix $ECHO abuse exposed by recent patch.

2008-11-16 Thread Ralf Wildenhues
The $ECHO changes (now using printf on GNU/Linux) exposed a buglet, fixed as below. Cheers, Ralf Fix $ECHO abuse exposed by recent patch. * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER): Require _LT_CHECK_SHELL_FEATURES, for $lt_NL2SP. Always quote argument to $ECHO. diff

Re: Revenge of the $ECHO. Kill most uses of Xsed.

2008-11-16 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Ralf Wildenhues on 11/16/2008 3:48 PM: > -my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"` > +my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` >done > - my_dir_list=`$ECH

Re: [PATCH] Fix --verbose option and add new --no-silent option

2008-11-16 Thread Charles Wilson
Ralf Wildenhues wrote: > Hi Charles, > > * Charles Wilson wrote on Sat, Nov 15, 2008 at 10:40:26AM CET: >> * libltdl/config/ltmain.m4sh (usage): Document >> new --no-silent/--no-quiet options. Spacing changes. >> (func_enable_tag): Handle --no-silent/--no-quiet options. >> Modified --verbose to ac

Re: Revenge of the $ECHO. Kill most uses of Xsed.

2008-11-16 Thread Paolo Bonzini
Ralf Wildenhues wrote: > I guess now that $ECHO copes with leading hyphen, we can throw away some > $Xsed uses, and turn all the rest to plain $SED. Is that what you had > in mind, Paolo? I hope you weren't also working on this? No, but I will look over for typos and also for more problematic us

Re: Revenge of the $ECHO. Kill most uses of Xsed.

2008-11-16 Thread Ralf Wildenhues
Hi Eric, * Eric Blake wrote on Mon, Nov 17, 2008 at 12:49:25AM CET: > According to Ralf Wildenhues on 11/16/2008 3:48 PM: > > -my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e > > "$dirname"` > > +my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` > >