You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2008/06/28 19:24:51 UTC

svn commit: r672557 - /incubator/rat/main/trunk/scan/build.xml

Author: rdonkin
Date: Sat Jun 28 10:24:51 2008
New Revision: 672557

URL: http://svn.apache.org/viewvc?rev=672557&view=rev
Log:
Corrected to new source directory

Modified:
    incubator/rat/main/trunk/scan/build.xml

Modified: incubator/rat/main/trunk/scan/build.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/scan/build.xml?rev=672557&r1=672556&r2=672557&view=diff
==============================================================================
--- incubator/rat/main/trunk/scan/build.xml (original)
+++ incubator/rat/main/trunk/scan/build.xml Sat Jun 28 10:24:51 2008
@@ -17,9 +17,10 @@
 
     
     <target name='run'>
+        <property name='src.rat' location='src/main'/>   
         <taskdef uri="antlib:org.apache.rat.scan"
-                    resource="org/apache/rat/scan/antlib.xml" classpath="src/main"/>     
-        <rat:Audit/>
+                    resource="org/apache/rat/scan/antlib.xml" classpath="${src.rat}"/>     
+        <rat:Audit src='${src.rat}'/>
     </target>   
     
     <macrodef name="SetupBuildDirs">