Jon Stevens wrote:
>
>> Note: build fails on Windows as the zip file is corrupt (non-binary?)
>
>I'm spoiled by Apache.org and a properly setup cvswrappers file. I fixed
>that for the Lucene project now.

Verified.  Lucene now builds clean on Linux and Win2K.

>> Suggestion for lucene: home directories typically don't have "/lib"
>> tacked onto them; move this from the end of .home to the beginning
>> of .zip.
>
>I don't quite understand. Please explain in more detail.

In short, I changed the lucene project definition you provided to match the
current lucene build.xml.  In this case, I would actually recommend the
opposite:

   Current lucene/build.xml:

       <property name="javacc.home" value="./lib"/>
       <property name="javacc.zip" value="${javacc.home}/JavaCC.zip"/>

   Current gump/project/lucene.xml:

       <home nested="lib"/>
       <jar name="JavaCC.zip"/>

   ----

   Proposed lucene/build.xml:

       <property name="javacc.home" value="."/>
       <property name="javacc.zip" value="${javacc.home}/lib/JavaCC.zip"/>

   Proposed gump/project/lucene.xml:

       <jar name="lib/JavaCC.zip"/>

- Sam Ruby


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to