Overview
Comment: | Updated to always create output directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
229a39bab19f5fb74dbda7e762280ab7 |
User & Date: | rkeene on 2016-09-06 03:43:23 |
Other Links: | manifest | tags |
Context
2016-09-06
| ||
03:43 | Migrated zlib to new build script check-in: 4ad42dd533 user: rkeene tags: trunk | |
03:43 | Updated to always create output directory check-in: 229a39bab1 user: rkeene tags: trunk | |
03:42 | Minor update to check for new build script system check-in: 69f695475e user: rkeene tags: trunk | |
Changes
Modified common/common.sh from [9063052c4e] to [f1093e6987].
︙ | ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | function init() { clean || return 1 TCL_VERSION="unknown" if [ -f "${TCLCONFIGDIR}/tclConfig.sh" ]; then source "${TCLCONFIGDIR}/tclConfig.sh" fi export TCL_VERSION } function predownload() { : } | > > > | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | function init() { clean || return 1 TCL_VERSION="unknown" if [ -f "${TCLCONFIGDIR}/tclConfig.sh" ]; then source "${TCLCONFIGDIR}/tclConfig.sh" fi mkdir -p "${installdir}" "${runtimedir}" export TCL_VERSION } function predownload() { : } |
︙ | ︙ | |||
243 244 245 246 247 248 249 | : } function createruntime() { local file # Install files needed by installation | < | 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | : } function createruntime() { local file # Install files needed by installation cp -r "${installdir}/lib" "${runtimedir}" || return 1 find "${runtimedir}" -name '*.a' -type f | while IFS='' read -r file; do rm -f "${file}" done # Ensure that some files were installed |
︙ | ︙ |