Message3352

Author leosoto
Recipients cartman, leosoto
Date 2008-07-17.21:13:50
SpamBayes Score 0.2078177
Marked as misclassified No
Message-id <1216329230.89.0.802752108617.issue1077@psf.upfronthosting.co.za>
In-reply-to
Content
The source of the problem seems to be the following lines of build.xml:

    <target name="jar-complete" depends="compile,expose,jarjar">
       <jar destfile="${dist.dir}/jython-complete.jar">
          <fileset dir="${compile.dir}"/>   
          <fileset dir="${exposed.dir}"/>
          <fileset dir="${jarjar.dir}">

This would explain the two PyArray.class files: One for the non-exposed
version from ${compile.dir} and another from ${exposed}.dir

I'm attaching a patch to put first the exposed class into the jar and
use the duplicate="preserve" attribute on the task, to completely avoid
duplicates.
History
Date User Action Args
2008-07-17 21:13:50leosotosetspambayes_score: 0.207818 -> 0.2078177
messageid: <1216329230.89.0.802752108617.issue1077@psf.upfronthosting.co.za>
2008-07-17 21:13:50leosotosetspambayes_score: 0.207818 -> 0.207818
recipients: + leosoto, cartman
2008-07-17 21:13:50leosotolinkissue1077 messages
2008-07-17 21:13:50leosotocreate