This is libtool 1.5.22, and I have seen the same problem with 1.5.23a.
ltmain.sh contains:
if test -n "$fix_srcfile_path"; then
eval srcfile=\"$fix_srcfile_path\"
fi
but my libtool scripts reads as follows:
# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path="`cygpath -w "$srcfile"`"
which obviously should have been
# Fix the shell variable $srcfile for the compiler.
fix_srcfile_path='`cygpath -w "$srcfile"`'
well I guess. There is gonna be hair for quotes. Why don't you use
functions? My usual $0.02 :)
_______________________________________________
Bug-libtool mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-libtool