+2011-01-07 Peter Rosin <peda@lysator.liu.se>
+
+ Convert file name to toolchain format when blessing archives.
+ * libltdl/config/ltmain.m4sh (func_mode_install): When executing
+ old_postinstall_cmds and old_archive_cmds, convert $oldlib to a
+ format appropriate for the tool and provide that in $tool_oldlib.
+ Also use $tool_oldlib when stripping old libraries.
+ * libltdl/m4/libtool.m4 (_LT_CMD_OLD_ARCHIVE): Use $tool_oldlib
+ as argument to $RANLIB.
+ * THANKS: Update.
+ Report by Dan McMahill.
+
2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Bump copyright years.
Christopher Hulbert cchgroupmail@gmail.com
Craig Tierney Craig.Tierney@noaa.gov
Dalibor Topic robilad@kaffe.org
+ Dan McMahill mcmahill@mtl.mit.edu
Daniel Reed n@ml.org
Daniel Richard G. skunk@iSKUNK.ORG
Dave Korn dave.korn.cygwin@googlemail.com
# Set up the ranlib parameters.
oldlib="$destdir/$name"
+ func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
+ tool_oldlib=$func_to_tool_file_result
func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
if test -n "$stripme" && test -n "$old_striplib"; then
- func_show_eval "$old_striplib $oldlib" 'exit $?'
+ func_show_eval "$old_striplib $tool_oldlib" 'exit $?'
fi
# Do each command in the postinstall commands.
esac
done
fi
+ func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
+ tool_oldlib=$func_to_tool_file_result
eval cmds=\"$old_archive_cmds\"
func_len " $cmds"
if test -n "$RANLIB"; then
case $host_os in
openbsd*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
;;
*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
;;
esac
- old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
+ old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
fi
case $host_os in