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: | 44d014800362d5bac2db0fa85d8ab082 | 
| User & Date: | rkeene on 2011-05-26 15:51:16 | 
| Other Links: | branch diff | 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 201 202 203 204 205 206 207 208 209 210 211 | 
		echo "set argv [list {${KITTARGET_NAME}} starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl
		echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl
		echo 'source installvfs.tcl' >> setup.tcl
		echo 'Running: echo | ./runkit'
		echo | ./runkit setup.tcl
	fi
	exit 0
) || exit 1
exit 0
 | > > > > > > > | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | 
		echo "set argv [list {${KITTARGET_NAME}} starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl
		echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl
		echo 'source installvfs.tcl' >> setup.tcl
		echo 'Running: echo | ./runkit'
		echo | ./runkit setup.tcl
	fi
	# Cleanup
	if [ "${KITTARGET}" = "kitdll" ]; then
		## Remove built interpreters if we are building KitDLL --
		## they're just tiny stubs anyway
		rm -f kit runkit
	fi
	exit 0
) || exit 1
exit 0
 |