dmkarr      2002/10/02 19:33:38

  Modified:    .        build.xml
  Log:
  Changed "dist.contrib" target to only build if "jstl.jar" is present, so a
  Servlet 2.2 build can complete without failing.  This probably could be
  cleaner, by separating the contrib libraries to be included in the binary into
  individual targets by contrib library, but at this time, there's only
  Struts-EL.  If more contrib libraries are added to the binary package, this
  should be rearranged slightly, as not all of them will depend on jstl.jar.
  
  Revision  Changes    Path
  1.81      +1 -1      jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- build.xml 2 Oct 2002 01:50:13 -0000       1.80
  +++ build.xml 3 Oct 2002 02:33:38 -0000       1.81
  @@ -410,7 +410,7 @@
   <!--
           Build the contrib modules that are packaged with the binary
   -->
  -    <target name="dist.contrib" depends="dist.source">
  +    <target name="dist.contrib" depends="dist.source" if="jstl.jar">
   
           <mkdir  dir="${dist.home}/contrib"/>
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to