Changeset 35425


Ignore:
Timestamp:
2021-09-17T20:51:54+12:00 (3 years ago)
Author:
anupama
Message:

Release-kits on windows were using a stale version of the bundled strawberry perl.zip (5.18) that was local inside the release-kits instead of grabbing the latest perl.zip (currently 5.22) that is on svn. Fixed this up in compile.xml to svn export the current perl.zip. Checked it works.

File:
1 edited

Legend:

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

    r34621 r35425  
    171171        <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
    172172            <!-- insert perl -->
    173             <unzip src="${rk.home}/shared/windows/perl.zip" dest="compiled/gs2build/bin/windows"/>
     173            <!--<unzip src="${rk.home}/shared/windows/perl.zip" dest="compiled/gs2build/bin/windows"/>-->
     174            <exec executable="svn" dir="compiled/gs2build/bin/windows">
     175                <arg value="export"/>
     176                <arg value="${svn.root}/main/trunk/release-kits/shared/windows/perl.zip"/>
     177            </exec>
     178            <unzip src="compiled/gs2build/bin/windows/perl.zip" dest="compiled/gs2build/bin/windows"/>
     179            <delete failonerror="false" file="compiled/gs2build/bin/windows/perl.zip" />
    174180        </if>
    175181
Note: See TracChangeset for help on using the changeset viewer.