Overview
Comment: | Fixed URL to CVS server |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
60d954a7f0df73356c62e1337d9f13aa |
User & Date: | geraint@users.sourceforge.net on 2012-10-15 21:30:00 |
Other Links: | branch diff | manifest | tags |
Context
2012-10-15
| ||
22:03:17 | Replaced obsolete split() with char(strsplit()) check-in: 205c929efd user: geraint@users.sourceforge.net tags: origin/master, trunk | |
21:30:00 | Fixed URL to CVS server check-in: 60d954a7f0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
21:29:17 | Fixed URL to CVS server check-in: 4059ffe98a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_cvs2deb from [bc90657745] to [3cd53ec09b].
︙ | ︙ | |||
150 151 152 153 154 155 156 | if [ ! -d ${tmpdir} ]; then error "cannot create temporary directory" fi # copy sources to working directory cd ${tmpdir} if [ "${sources}" = "${default_sources}" ]; then | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | if [ ! -d ${tmpdir} ]; then error "cannot create temporary directory" fi # copy sources to working directory cd ${tmpdir} if [ "${sources}" = "${default_sources}" ]; then cvs -z3 -d:pserver:anonymous@mtt.cvs.sf.net:/cvsroot/mtt export -D now mttroot/mtt/lib/examples else mkdir -p ./mttroot/mtt/lib/ cp -a ${sources}/mtt/lib/examples ./mttroot/mtt/lib for dir in $(find . -type d -name CVS); do rm -r $dir done fi |
︙ | ︙ |