hack around bug-in-something causing link-checker to false-fail on windows by chdir'ing to the docs dir here

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1388319 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-09-21 04:06:45 +00:00
parent 6312c37090
commit 262de45645
1 changed files with 3 additions and 2 deletions

View File

@ -1805,10 +1805,11 @@ ${tests-output}/junit4-*.suites - per-JVM executed suites
<macrodef name="check-broken-links">
<attribute name="dir"/>
<!-- TODO: somehow, the behavior of this script has CWD-funkiness but only on windows -->
<sequential>
<exec dir="." executable="${python32.exe}" failonerror="true">
<exec dir="@{dir}" executable="${python32.exe}" failonerror="true">
<arg value="${dev-tools.dir}/scripts/checkJavadocLinks.py"/>
<arg value="@{dir}"/>
<arg value="."/>
</exec>
</sequential>
</macrodef>