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 make

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. New

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 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` done -