On 8/12/2010 12:12 AM, Paolo Bonzini wrote:
> + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g" $lib > $tmpdir/tmp-la
Hmmm. Some of the test cases end up with dependency_libs like this:
dependency_libs=' -L=/mingw/lib =/mingw/lib/lib1.la'
This rule will catch the first element, but not the second. What about:
sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g;s/\([ ']\)=/\1/g" $lib >
$tmpdir/tmp-la
--
Chuck
