You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by to...@apache.org on 2002/10/01 20:02:11 UTC

cvs commit: xml-axis/java/samples/userguide build.xml

tomj        2002/10/01 11:02:11

  Modified:    java/samples/userguide build.xml
  Log:
  Fix bug 13160 - userguide samples dont build.
   http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13160
  
  Changed a "." to "${axis.home}"
  
  Revision  Changes    Path
  1.5       +1 -1      xml-axis/java/samples/userguide/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/userguide/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml	11 Sep 2002 21:09:08 -0000	1.4
  +++ build.xml	1 Oct 2002 18:02:11 -0000	1.5
  @@ -48,7 +48,7 @@
   <target name="copy" depends="setenv"/>
   
   <target name="compile" depends="copy">
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}" fork="${javac.fork}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}" fork="${javac.fork}">
       <classpath>
           <path refid="classpath"/>
       </classpath>