Overview
Comment: | Updated to copy all KitDLL related files to build directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 256ca73ea39e39a5545cffb0ee3b5f90adfa3046 |
User & Date: | rkeene on 2010-09-30 08:16:03 |
Other Links: | manifest | tags |
Context
2010-09-30
| ||
08:20 |
Updated to support Registry and DDE packages on Win32, and to support the
Thread package
Added support for exporting all symbols to the DLL on Win32 check-in: d903137347 user: rkeene tags: trunk | |
08:16 | Updated to copy all KitDLL related files to build directory check-in: 256ca73ea3 user: rkeene tags: trunk | |
06:39 |
Updated KitDLL to search for libraries to link to from other projects
Added KitDLL prepartion and checking to pre-release initialization script check-in: 4f4058fd40 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [1482b68059] to [23a3f8c63a].
87 87 echo "Failed to build:${failedpkgs}" 88 88 fi 89 89 90 90 if [ "${buildfailed}" != "0" ]; then 91 91 echo 'WARNING: Build is likely incomplete or failed.' >&2 92 92 fi 93 93 94 -cp 'kitdll/build'/kitdll-*/libtcl.* "$(basename 'kitdll/build'/kitdll-*/libtcl.* | sed "s@\..*\$@-${TCLVERS}&@")" >/dev/null 2>/dev/null 94 +for kitdllfile in 'kitdll/build'/kitdll-*/libtcl.*; do 95 + cp "${kitdllfile}" "$(echo "${kitdllfile}" | sed "s@^.*/@@;s@\..*\$@-${TCLVERS}&@")" >/dev/null 2>/dev/null 96 +done 95 97 cp 'kitsh/build'/kitsh-*/kit "tclkit-${TCLVERS}" 96 98 97 99 exit "${buildfailed}"