You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-dev@jakarta.apache.org by md...@apache.org on 2001/10/31 11:23:19 UTC

cvs commit: jakarta-bcel build.xml

mdahm       01/10/31 02:23:19

  Modified:    .        build.xml
  Log:
  Confusion between build.dir and build.dest, examples wouldn't run
  
  Revision  Changes    Path
  1.3       +3 -3      jakarta-bcel/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2001/10/30 16:39:23	1.2
  +++ build.xml	2001/10/31 10:23:19	1.3
  @@ -2,7 +2,7 @@
   
   <!--
      Build file for BCEL
  -   $Id: build.xml,v 1.2 2001/10/30 16:39:23 jvanzyl Exp $
  +   $Id: build.xml,v 1.3 2001/10/31 10:23:19 mdahm Exp $
   
   Notes:
      This is a build file for use with the Jakarta Ant build tool.
  @@ -49,7 +49,7 @@
       <property name="apidocs.dir"  value="${docs.dir}/api"/>
       <property name="build.dest"   value="${build.dir}/classes"/>
       <property name="lib.dir"      value="${basedir}/lib"/>
  -    <property name="class.path"   value="${lib.dir}/Regex.jar:${build.dir}"/>
  +    <property name="class.path"   value="${lib.dir}/Regex.jar:${build.dest}"/>
   
       <!-- Use jikes compiler, if you don't have it comment out the next lines -->
       <!-- property name="build.compiler.emacs" value="true"/ -->
  @@ -72,7 +72,7 @@
   
     <!-- Compile the examples -->
     <target name="examples" depends="compile">
  -    <javac srcdir="${examples.dir}" destdir="${build.dir}" classpath="${class.path}" />
  +    <javac srcdir="${examples.dir}" destdir="${build.dest}" classpath="${class.path}" />
     </target>
   
     <target name="docs" depends="init">
  
  
  

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