Changeset 548

Show
Ignore:
Timestamp:
04/16/07 23:33:51 (2 years ago)
Author:
schst
Message:

Implement requests by Frank: rename build.xml to build-dist.xml, set default permissions to 0700, changeable in build.properties

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/stubbles/build.xml

    r545 r548  
    6565    <copy file="${project.basedir}/../../lib/xjconf.star" tofile="${build.src.dir}/lib/xjconf.star" /> 
    6666 
    67     <copy file="${project.basedir}/../../src/main/resources/phing/build.xml" tofile="${build.src.dir}/build.xml" /> 
     67    <copy file="${project.basedir}/../../src/main/resources/phing/build.xml" tofile="${build.src.dir}/build-dist.xml" /> 
    6868    <copy file="${project.basedir}/../../src/main/resources/phing/build-stubbles.xml" tofile="${build.src.dir}/build-stubbles.xml" /> 
    6969    <copy file="${project.basedir}/../../src/main/resources/phing/build.properties-dist" tofile="${build.src.dir}/build.properties-dist" /> 
  • trunk/src/main/resources/phing/build-stubbles.xml

    r546 r548  
    1111  --> 
    1212  <target name="prepare-folders" description="Adjusts directory permissions of cache directories."> 
    13     <chmod file="${project.basedir}/lib" mode="0777"/> 
    14     <chmod file="${project.basedir}/cache" mode="0777"/> 
    15     <chmod file="${project.basedir}/cache/xml" mode="0777"/> 
     13    <chmod file="${project.basedir}/lib" mode="${cache.permissions}"/> 
     14    <chmod file="${project.basedir}/cache" mode="${cache.permissions}"/> 
     15    <chmod file="${project.basedir}/cache/xml" mode="${cache.permissions}"/> 
    1616  </target> 
    1717 
  • trunk/src/main/resources/phing/build.properties-dist

    r545 r548  
    11jsonrpc.clients.dir=docroot/generated-scripts 
     2cache.permissions=0700