]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
libtool: unbreak Windows path quoting
authorPeter Rosin <peda@lysator.liu.se>
Thu, 18 Oct 2012 22:18:10 +0000 (00:18 +0200)
committerPeter Rosin <peda@lysator.liu.se>
Thu, 18 Oct 2012 22:18:10 +0000 (00:18 +0200)
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>
build-aux/ltmain.in

index 660af1cf653276ec9b68d1dfdc6f20dd2c1ac14c..bcfc04c0102b1a3553ea94adcb29aa909b095055 100644 (file)
@@ -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