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: | 229a39bab19f5fb74dbda7e762280ab70e764bf3 |
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 23 function init() { 24 24 clean || return 1 25 25 26 26 TCL_VERSION="unknown" 27 27 if [ -f "${TCLCONFIGDIR}/tclConfig.sh" ]; then 28 28 source "${TCLCONFIGDIR}/tclConfig.sh" 29 29 fi 30 + 31 + mkdir -p "${installdir}" "${runtimedir}" 32 + 30 33 export TCL_VERSION 31 34 } 32 35 33 36 function predownload() { 34 37 : 35 38 } 36 39 ................................................................................ 243 246 : 244 247 } 245 248 246 249 function createruntime() { 247 250 local file 248 251 249 252 # Install files needed by installation 250 - mkdir -p "${runtimedir}" || return 1 251 253 cp -r "${installdir}/lib" "${runtimedir}" || return 1 252 254 253 255 find "${runtimedir}" -name '*.a' -type f | while IFS='' read -r file; do 254 256 rm -f "${file}" 255 257 done 256 258 257 259 # Ensure that some files were installed