Author: markt
Date: Tue Nov  3 00:25:54 2009
New Revision: 832221

URL: http://svn.apache.org/viewvc?rev=832221&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=48066
Be explicit about including Ant on the compilation classpath

Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=832221&r1=832220&r2=832221&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Tue Nov  3 00:25:54 2009
@@ -104,7 +104,6 @@
 
   <!-- Classpath -->
   <path id="tomcat.classpath">
-    <pathelement location="${ant.jar}"/>
     <pathelement location="${jdt.jar}"/>
   </path>
 
@@ -157,7 +156,8 @@
            target="${compile.target}"
            optimize="${compile.optimize}"
            excludes="**/CVS/**,**/.svn/**"
-           encoding="ISO-8859-1">
+           encoding="ISO-8859-1"
+          includeAntRuntime="true" >
 <!-- Comment this in to show unchecked warnings:     
       <compilerarg value="-Xlint:unchecked"/>
  -->



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to