I'm the maintainer of JPackage project rhino package (see
jpackage.sourceforge.net). I just found two problems for building it (version
1.52 from cvs):
- the property src.debugger is badly initialised in toolsrc/build.xml. See
patch attached for correction. Moreover, this was a real pain to make offline
building possible. I guess it's a licensing problem that prevents you
including those files in rhino sources ?
- the produced javadoc has an empty (0 sized) package-list file. Have you got
any idea why ?
-- Guillaume Rousse <rousse@ccr.jussieu.fr>
GPG key http://lis.snv.jussieu.fr/~rousse/gpgkey.html
This commit is contained in:
nboyd%atg.com 2001-12-06 14:26:26 +00:00
parent 45d43458ac
commit 82fd57b5aa

View File

@ -9,11 +9,9 @@ Requires Ant version 1.2
<target name="properties">
<property name="nest" value=".."/>
<property name="src.debugger"
value="org/mozilla/javascript/tools/debugger"/>
value="org/mozilla/javascript/tools/debugger"/>
<available file="${src.debugger}/AbstractCellEditor.java"
property="swing-ex-available"/>
<available classname="java.lang.reflect.Proxy"
property="jdk1.3"/>
</target>
<target name="get-swing-ex" unless="swing-ex-available">