You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2002/12/01 15:11:53 UTC

cvs commit: jakarta-taglibs-sandbox common.xml

glenn       2002/12/01 06:11:53

  Modified:    .        common.xml
  Log:
  Speed up the build
  
  Revision  Changes    Path
  1.4       +4 -2      jakarta-taglibs-sandbox/common.xml
  
  Index: common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs-sandbox/common.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- common.xml	22 Oct 2002 02:49:00 -0000	1.3
  +++ common.xml	1 Dec 2002 14:11:53 -0000	1.4
  @@ -54,7 +54,7 @@
     <!-- =================================================================== -->
     <!-- Check required components (xerces and xalan)                        -->
     <!-- =================================================================== -->
  -  <target name="checkRequirements">
  +  <target name="checkRequirements" unless="checkRequirements.done">
       <antcall target="${checkRequirements.pre}"/>
       <antcall target="checkRequiredFile">
          <param name="file" value="${servlet.jar}"/>
  @@ -71,12 +71,13 @@
       </antcall>
   -->
       <antcall target="${checkRequirements.post}"/>
  +    <property name="checkRequirements.done" value="true"/>
     </target>
   
     <!-- =================================================================== -->
     <!-- Prepare the build and dist directories                              -->
     <!-- =================================================================== -->
  -  <target name="prepare" depends="checkRequirements">
  +  <target name="prepare" depends="checkRequirements" unless="prepare.done">
       <antcall target="${prepare.pre}"/>
       <!-- Set up build directories -->
       <mkdir dir="${build.dir}"/>
  @@ -108,6 +109,7 @@
         <param name="release" expression="${release}"/>
       </style>
       <antcall target="${prepare.post}"/>
  +    <property name="prepare.done" value="true"/>
     </target>
   
     <!-- =================================================================== -->
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>