Overview
Comment: | Updated to remove stub Tclkits created for bootstrapping purposes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | merge-kitdll-kitsh-common |
Files: | files | file ages | folders |
SHA1: | 44d014800362d5bac2db0fa85d8ab0825bda6e6f |
User & Date: | rkeene on 2011-05-26 15:51:16 |
Other Links: | manifest | tags |
Context
2011-05-26
| ||
15:54 | Updated to detect "--enable-kitdll" as an argument to kitcreator and enable KitDLL check-in: 756328f16e user: rkeene tags: merge-kitdll-kitsh-common | |
15:51 | Updated to remove stub Tclkits created for bootstrapping purposes check-in: 44d0148003 user: rkeene tags: merge-kitdll-kitsh-common | |
2011-05-24
| ||
06:05 | Updated all references to the KitDLL VFS to be "CVFS" check-in: 878ff79575 user: rkeene tags: merge-kitdll-kitsh-common | |
Changes
Modified kitsh/build.sh from [670c8d17c7] to [1a70934064].
200 200 echo "set argv [list {${KITTARGET_NAME}} starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl 201 201 echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl 202 202 echo 'source installvfs.tcl' >> setup.tcl 203 203 204 204 echo 'Running: echo | ./runkit' 205 205 echo | ./runkit setup.tcl 206 206 fi 207 + 208 + # Cleanup 209 + if [ "${KITTARGET}" = "kitdll" ]; then 210 + ## Remove built interpreters if we are building KitDLL -- 211 + ## they're just tiny stubs anyway 212 + rm -f kit runkit 213 + fi 207 214 208 215 exit 0 209 216 ) || exit 1 210 217 211 218 exit 0