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

Location:
other-projects/expeditee-release-kits/kits/rke
Files:
2 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
  • other-projects/expeditee-release-kits/kits/rke/installer/build.xml

    r28717 r28721  
    9494        <echo>Setting Binaries to Executable</echo>
    9595        <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
     96        <chmod dir="${installDir}/bin" includes="*" perm="755"/>
    9697        <!-- <chmod dir="${installDir}/bin" includes="*" perm="775"/>
    9798        <chmod dir="${installDir}/cgi-bin/${shell.name}" includes="*" perm="775"/>
Note: See TracChangeset for help on using the changeset viewer.