Changeset 29236


Ignore:
Timestamp:
2014-08-26T15:32:52+12:00 (10 years ago)
Author:
ak19
Message:
  1. Delete windows formatconverter.exe binary in linux and mac GS3 binaries and delete the linux/mac formatconverter binary in a Windows GS3 binary. 2. Delete the Lucene 3 ext/solr subfolders for a release binary, since we've moved to Lucene 4.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml

    r29205 r29236  
    117117            <move file="${basedir}/compiled/ext/gnome-lib-minimal" todir="compiled/gs2build/ext"/>
    118118        </if>
     119       
     120        <!-- Delete Lucene 3.3 specific ext/solr folders, since we've switched over to Lucene 4.7.2 -->
     121        <delete dir="${basedir}/compiled/ext/solr/lib3" />
     122        <delete dir="${basedir}/compiled/ext/solr/conf3" />
     123        <delete dir="${basedir}/compiled/ext/solr/etc3" />
    119124
    120125         
     
    168173        <antcall target="strip-svn-dirs"><param name="dir" value="compiled"/></antcall>
    169174
     175        <!-- get rid of bin/formatconverter on windows and get rid of bin/formatconverter.exe on linux/mac -->
     176        <if>
     177            <bool><equals arg1="${rk.os}" arg2="windows"/></bool>
     178                <delete file="compiled/bin/formatconverter"/>
     179            <else>
     180                <delete file="compiled/bin/formatconverter.exe"/>
     181            </else>
     182        </if>       
     183       
    170184        <!-- (linux only) -->
    171185        <if><bool><equals arg1="${rk.os}" arg2="linux"/></bool>
Note: See TracChangeset for help on using the changeset viewer.