You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by mp...@apache.org on 2003/01/08 21:36:56 UTC

cvs commit: xml-forrest build.xml

mpo         2003/01/08 12:36:55

  Modified:    .        build.xml
  Log:
  clean target needs to depend from init otherwise ${build.dir} is not set
  we should be able to rely on ./build.sh clean again.
  
  Revision  Changes    Path
  1.54      +1 -1      xml-forrest/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-forrest/build.xml,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- build.xml	11 Dec 2002 08:28:08 -0000	1.53
  +++ build.xml	8 Jan 2003 20:36:55 -0000	1.54
  @@ -72,7 +72,7 @@
       <mkdir dir="${build.dir}"/>
     </target>
   
  -  <target name="clean" description="Delete all generated files">
  +  <target name="clean" depends="init" description="Delete all generated files">
       <delete dir="${build.dir}"/>
     </target>