You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@locus.apache.org on 2000/11/12 02:11:05 UTC

cvs commit: jakarta-tomcat-4.0/webapps/manager build.xml

remm        00/11/11 17:11:05

  Modified:    webapps/manager build.xml
  Log:
  - Update the buildfiles to the new Ant 1.2
  
  Revision  Changes    Path
  1.3       +6 -3      jakarta-tomcat-4.0/webapps/manager/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/manager/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2000/10/12 23:34:15	1.2
  +++ build.xml	2000/11/12 01:11:05	1.3
  @@ -22,8 +22,11 @@
   
     <!-- ================ BUILD: Copy Static Files ========================== -->
     <target name="build-static" depends="build-prepare">
  -    <copydir src="." dest="${build.dir}/${webapp.name}"
  -             excludes="build.*"/>
  +    <copy todir="${build.dir}/${webapp.name}">
  +      <fileset dir=".">
  +        <exclude name="build.*"/>
  +      </fileset>
  +    </copy>
     </target>
   
   
  @@ -47,7 +50,7 @@
   
     <!-- ======================= BUILD: Clean Directory ===================== -->
     <target name="build-clean">
  -    <deltree dir="${build.dir}/${webapp.name}"/>
  +    <delete dir="${build.dir}/${webapp.name}"/>
     </target>