Ignore:
Timestamp:
2020-12-16T23:11:25+13:00 (3 years ago)
Author:
anupama
Message:

Further rk2 changes to get the release kit to use wget to grab the old IsisGdl 32 bit mac and linux binaries on elcapitan, mountain lion and linux 64 bit. The 32 bit linux does not need to replace its 32 bit generated IsisGdl, so its compile.xml file never did that before nor at present.

File:
1 edited

Legend:

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

    r34610 r34612  
    252252            <!-- for 64 bit need to copy in the statically compiled IsisGdl -->
    253253            <!--<delete file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>-->
    254             <get src="http://www.greenstone.org/caveat-emptor/IsisGdl.bin32" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32"/>
     254            <!--<get src="https://www.greenstone.org/caveat-emptor/IsisGdl.bin32" dest="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32"/>-->
     255            <exec executable="wget" failonerror="true">
     256              <arg value="-P"/>
     257              <arg value="${basedir}/compiled/bin/${os.shell}"/>
     258              <arg value="--no-check-certificate"/>
     259              <arg value="https://www.greenstone.org/caveat-emptor/IsisGdl.bin32"/>
     260            </exec>
    255261            <move file="${basedir}/compiled/bin/${os.shell}/IsisGdl.bin32" tofile="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    256262            <chmod perm="755" file="${basedir}/compiled/bin/${os.shell}/IsisGdl"/>
    257 
    258263        </if>
    259264
Note: See TracChangeset for help on using the changeset viewer.