You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/09/21 06:02:24 UTC

svn commit: r1388317 - /lucene/dev/branches/branch_4x/lucene/common-build.xml

Author: rmuir
Date: Fri Sep 21 04:02:24 2012
New Revision: 1388317

URL: http://svn.apache.org/viewvc?rev=1388317&view=rev
Log:
hack around bug-in-something causing link-checker to false-fail on windows by chdir'ing to the docs dir here

Modified:
    lucene/dev/branches/branch_4x/lucene/common-build.xml

Modified: lucene/dev/branches/branch_4x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/common-build.xml?rev=1388317&r1=1388316&r2=1388317&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_4x/lucene/common-build.xml Fri Sep 21 04:02:24 2012
@@ -1805,10 +1805,11 @@ ${tests-output}/junit4-*.suites     - pe
 
   <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>