Differences From Artifact [c20cbb9749]:
- Executable file
tclvfs/build.sh
— part of check-in
[8c0ee91103]
at
2011-02-27 20:26:01
on branch trunk
— Updated to emit TclVFS faillure if "make install" fails.
Updated to log which Tclkit is being used to install the VFS (user: rkeene, size: 2565) [annotate] [blame] [check-ins using] [more...]
To Artifact [b73ccac3f3]:
- Executable file tclvfs/build.sh — part of check-in [d860d314dd] at 2011-07-05 17:28:18 on branch trunk — Updated additional build scripts to not attempt download if "buildsrc" directory is being used (user: rkeene, size: 2602) [annotate] [blame] [check-ins using]
28 28 source "${TCLCONFIGDIR}/tclConfig.sh" 29 29 fi 30 30 export TCL_VERSION 31 31 32 32 if [ ! -f "${SRC}" ]; then 33 33 mkdir 'src' >/dev/null 2>/dev/null 34 34 35 - rm -f "${SRC}.tmp" 36 - wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 37 - mv "${SRC}.tmp" "${SRC}" 35 + if [ ! -d 'buildsrc' ]; then 36 + rm -f "${SRC}.tmp" 37 + wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 38 + mv "${SRC}.tmp" "${SRC}" 39 + fi 38 40 fi 39 41 40 42 ( 41 43 cd 'build' || exit 1 42 44 43 45 if [ ! -d '../buildsrc' ]; then 44 46 gzip -dc "../${SRC}" | tar -xf -