New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79086


Ignore:
Timestamp:
06/01/11 17:38:24 (4 years ago)
Author:
jmr@…
Message:

strip trailing whitespace from mprsyncup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/portmgr/jobs/mprsyncup

    r79027 r79086  
    2121# Lastly, it is required of every 3rd party mirrors to keep track of this script 
    2222# and the base/portmgr/rsync.repos file and always maintain local copies in as 
    23 # close sync as possible.  
     23# close sync as possible. 
    2424# 
    2525# 
     
    9898    ${MKDIR} -p ${RSYNCROOT}/release/base 
    9999fi 
    100 ${RSYNC} -aIC --delete ${RBASE}/ ${RSYNCROOT}/release/base  
     100${RSYNC} -aIC --delete ${RBASE}/ ${RSYNCROOT}/release/base 
    101101 
    102102# clean up the working copy if it is locked 
     
    107107# Update/checkout the ports tree, export it and rsync it to ${RSYNCROOT}/release/ports: 
    108108if [ -d ${PORTS}/.svn ]; then 
    109     ${SVN} update ${PORTS}   
     109    ${SVN} update ${PORTS} 
    110110else 
    111111    ${SVN} checkout ${SVNURL}/trunk/dports ${PORTS} 
     
    116116# build MP trunk in a private location for indexing 
    117117pushd ${ROOT}/${TMPDIR} >> /dev/null 
    118 mkdir -p ${TCLPKG}  
     118${MKDIR} -p ${TCLPKG} 
    119119./configure \ 
    120120    --prefix=${PREFIX} \ 
    121121    --with-tclpackage=${TCLPKG} \ 
    122122    --with-install-user=${MP_USER} \ 
    123     --with-install-group=${MP_GROUP}  
    124 make clean  
     123    --with-install-group=${MP_GROUP} 
     124make clean 
    125125make 
    126 make install  
     126make install 
    127127popd 
    128128 
     
    146146    ${RM} -rf dports && ${LN} -s ../release/ports dports 
    147147fi 
    148  
Note: See TracChangeset for help on using the changeset viewer.