]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Fix cross compilation with wine for the case SHELL != bash.
authorAlexei Sheplyakov <varg@theor.jinr.ru>
Sun, 9 Nov 2008 19:47:38 +0000 (20:47 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 9 Nov 2008 19:48:27 +0000 (20:48 +0100)
* libltdl/config/ltmain.m4sh (func_to_host_path): Avoid escape
sequence interpretation by 'echo', for w32-style paths.
* THANKS: Update.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
THANKS
libltdl/config/ltmain.m4sh

index 38abe80027e31f5d2391ba3c196f9f80bbedeaa8..474d08b5953996163ff032ef502ece9dcce2b1ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-11-09  Alexei Sheplyakov  <varg@theor.jinr.ru>  (tiny change)
+
+       Fix cross compilation with wine for the case SHELL != bash.
+       * libltdl/config/ltmain.m4sh (func_to_host_path): Avoid escape
+       sequence interpretation by 'echo', for w32-style paths.
+       * THANKS: Update.
+
 2008-10-28  Michael Haubenwallner  <michael.haubenwallner@salomon.at> (tiny change)
 
        Fix checks for unsupported allow_undefined_flag.
diff --git a/THANKS b/THANKS
index 17b7b1252cce422439296ffd5faaf257bf9bcf60..08971f9342410d20d31c35b29871903aaacc6208 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -67,6 +67,7 @@
   their time and energy in helping to track down bugs, port to new systems,
   and generally assist in the libtool maintainership process:
 
+  Alexei Sheplyakov            varg@theor.jinr.ru
   Andreas Schwab               schwab@suse.de
   Andrey Slepuhin              pooh@msu.ru
   Aneesh Kumar K.V             kvaneesh@hotmail.com
index 696b6ab1359ed92abd3970740b4a6c152b826374..005c6a8f80d9d88a0801035b05a0fa3642aa799f 100644 (file)
@@ -2600,7 +2600,7 @@ func_to_host_path ()
             ;;
           *cygwin* )
             func_to_host_path_tmp1=`cygpath -w "$1"`
-            func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\
+            func_to_host_path_result=`$ECHO "$func_to_host_path_tmp1" |\
               $SED -e "$lt_sed_naive_backslashify"`
             ;;
           * )
@@ -2613,7 +2613,7 @@ func_to_host_path ()
             # the odd construction:
             func_to_host_path_tmp1=`winepath -w "$1" 2>/dev/null`
             if test "$?" -eq 0 && test -n "${func_to_host_path_tmp1}"; then
-              func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\
+              func_to_host_path_result=`$ECHO "$func_to_host_path_tmp1" |\
                 $SED -e "$lt_sed_naive_backslashify"`
             else
               # Allow warning below.