mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-05 14:40:42 +08:00
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 <peda@lysator.liu.se>
This commit is contained in:
parent
92b77ed8bb
commit
cfe82e7f85
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user