From: Peter Rosin Date: Thu, 18 Oct 2012 22:18:10 +0000 (+0200) Subject: libtool: unbreak Windows path quoting X-Git-Tag: v2.4.2.418~117 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfe82e7f854ed1f746d6cfd7febf4aad42fbfec1;p=thirdparty%2Flibtool.git libtool: unbreak Windows path quoting The lt_sed_naive_backslashify variable lost its lt_ prefix when m4sh was dropped. But not everywhere. * build-aux/ltmain.in (func_convert_core_file_wine_to_w32) (func_convert_core_msys_to_w32): Drop the lt_ prefix from the lt_sed_naive_backslashify variable. Signed-off-by: Peter Rosin --- diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index 660af1cf6..bcfc04c01 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -841,7 +841,7 @@ func_convert_core_file_wine_to_w32 () func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` + $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi @@ -928,7 +928,7 @@ func_convert_core_msys_to_w32 () # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32