greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 17077

Show
Ignore:
Timestamp:
2008-08-29 11:11:37 (4 months ago)
Author:
oranfry
Message:

force the use of command line svn to stop seg faults and bus errors on the old mac any probably other machines

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • release-kits/mark2/ant-scripts/compile.xml

    r16808 r17077  
    2323 
    2424        <target name="checkout-gsdl-gli"> 
    25                 <svn
     25                <svn javahl="false"
    2626                        <checkout url="${svn.root}/gsdl/${branch.path}" destPath="${basedir}/gsdl"/> 
    2727                        <checkout url="${svn.root}/gli/${branch.path}" destPath="${basedir}/gsdl/gli"/> 
  • release-kits/mark2/ant-scripts/create-distribution.xml

    r16808 r17077  
    1818                <mkdir dir="distributions"/> 
    1919                <delete dir="distributions/web"/> 
    20                 <svn
     20                <svn javahl="false"
    2121                        <export srcurl="${svn.root}/gsdl/${branch.path}" destPath="distributions/web"/> 
    2222                        <export srcurl="${svn.root}/gli/${branch.path}" destPath="distributions/web/gli"/> 
  • release-kits/mark2/ant-scripts/wrap.xml

    r16808 r17077  
    1717                <rsr file="${basedir}/wrapped-installer/Greenstone${version}.app/Contents/Info.plist" pattern="@version@" replacement="${version}"/> 
    1818 
    19                      <!-- get size of app --> 
    20                      <exec executable="du" dir="${basedir}/wrapped-installer" outputproperty="app.du"><arg line="-ks Greenstone${version}.app"/></exec> 
     19               <!-- get size of app --> 
     20               <exec executable="du" dir="${basedir}/wrapped-installer" outputproperty="app.du"><arg line="-ks Greenstone${version}.app"/></exec> 
    2121                <echo>app.du: ${app.du}</echo> 
    22                      <exec executable="sed" inputstring="${app.du}" outputproperty="app.size"><arg line="-e 's/^\([0-9]*\).*$/\1/g'"/></exec> 
     22               <exec executable="sed" inputstring="${app.du}" outputproperty="app.size"><arg line="-e 's/^\([0-9]*\).*$/\1/g'"/></exec> 
    2323                <echo>app.size: ${app.size}</echo> 
    2424                <math result="dmg.size" operand1="${app.size}" operation="+" operand2="${dmg.overhead}" datatype="int"/>