<div dir="ltr"><div><div><div><div>Another Windows patch for fixing the "install" target in Makefile.am.<br><br></div>On Windows, syn links usually don't work, so automake uses "cp" instead of "ln -s", but the ways those commands handle their arguments are not completely equivalent.<br><br></div>Specifically, commands like...<br><br>   $(LN_S) foo $dir/foo<br><br></div>doesn't work with "cp" because it doesn't resolve the first argument relative to the second. This patch solves the issue replacing those commands by...<br><br>   cd $dir && $(LN_S) foo foo<br><br></div>as recommended in the automake documentation.<br><br><br></div>