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:10:56 UTC

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

remm        00/11/11 17:10:56

  Modified:    webapps  build.xml
  Log:
  - Update the buildfiles to the new Ant 1.2
  
  Revision  Changes    Path
  1.10      +5 -3      jakarta-tomcat-4.0/webapps/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	2000/10/16 23:17:11	1.9
  +++ build.xml	2000/11/12 01:10:55	1.10
  @@ -46,7 +46,7 @@
   
     <!-- ======================= BUILD: Clean Directory ===================== -->
     <target name="build-clean">
  -    <deltree dir="${webapps.build}"/>
  +    <delete dir="${webapps.build}"/>
     </target>
   
   
  @@ -57,7 +57,9 @@
     <!-- ================= DEPLOY: Deploy Webapps Projects ================== -->
     <target name="deploy" depends="dist">
       <mkdir dir="${webapps.deploy}/webapps"/>
  -    <copydir src="${webapps.build}" dest="${webapps.deploy}/webapps"/>
  +    <copy todir="${webapps.deploy}/webapps">
  +      <fileset dir="${webapps.build}" />
  +    </copy>
     </target>
   
   
  @@ -67,7 +69,7 @@
   
     <!-- ======================= DIST: Clean Directory ====================== -->
     <target name="dist-clean">
  -    <deltree dir="${webapps.dist}"/>
  +    <delete dir="${webapps.dist}"/>
     </target>