Ignore:
Timestamp:
2013-11-29T13:43:13+13:00 (10 years ago)
Author:
ak19
Message:

Add scripts to find java and run expeditee, make installer copy scripts to installation directory, and chmod them to be executable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/expeditee-release-kits/kits/rke/ant-scripts/compile.xml

    r28720 r28721  
    2121        </move>
    2222
    23 
     23        <!-- copy search4j -->
    2424        <if><bool><or><equals arg1="${rk.os}" arg2="mac"/><equals arg1="${rk.os}" arg2="linux"/></or></bool>
    2525            <exec dir="${rk.home}/shared/core/search4j" executable="./configure" failonerror="true"/>
    2626            <exec dir="${rk.home}/shared/core/search4j" executable="make" failonerror="true"/>
    27             <copy file="${rk.home}/shared/core/search4j/search4j" todir="${basedir}/compiled" />
     27            <copy file="${rk.home}/shared/core/search4j/search4j" todir="${basedir}/compiled/bin" />
    2828        </if>
    2929        <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
    3030            <exec dir="${rk.home}/shared/core/search4j" executable="nmake"><arg value="/f"/><arg value="win32.mak"/></exec>
    31             <copy file="${rk.home}/shared/core/search4j/search4j.exe" todir="${basedir}/compiled" />
     31            <copy file="${rk.home}/shared/core/search4j/search4j.exe" todir="${basedir}/compiled/bin" />
    3232        </if>
     33
     34        <!-- copy run scripts -->
     35        <copy todir="${basedir}/compiled">
     36            <fileset dir="${rk.home}/scripts">
     37                <include name="**" />
     38            </fileset>
     39        </copy>
    3340    </target>
    3441
Note: See TracChangeset for help on using the changeset viewer.