Revision: 1320
Author: sberlin
Date: Mon Oct 25 18:41:17 2010
Log: fix javadoc bootclasspath so that it references ${java.home}, which is set by every ant dist, instead of ${javahome} which may not be set.
http://code.google.com/p/google-guice/source/detail?r=1320

Modified:
 /trunk/build.xml

=======================================
--- /trunk/build.xml    Thu Oct 21 14:32:26 2010
+++ /trunk/build.xml    Mon Oct 25 18:41:17 2010
@@ -105,10 +105,11 @@
   </target>

   <target name="javadoc">
+       <echo message="${javahome}"/>
     <javadoc packagenames="com.google.*"
              destdir="build/docs"
-             docletpath="lib/build/doclava.jar"
-             bootclasspath="${javahome}/jre/lib/rt.jar"
+            docletpath="lib/build/doclava.jar"
+             bootclasspath="${java.home}/lib/rt.jar"
              maxmemory="512M">
       <fileset dir="${src.dir}" defaultexcludes="yes">
         <include name="com/google/**"/>

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To post to this group, send email to google-guice-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-guice-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-guice-dev?hl=en.

Reply via email to