Overview
| Comment: | Fixed KitDLL cleanup | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
581ba55290276c297b23b6638b3f0db8 | 
| User & Date: | rkeene on 2010-09-30 06:25:01 | 
| Other Links: | manifest | tags | 
Context
| 
   2010-09-30 
 | ||
| 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 | |
| 06:25 | Fixed KitDLL cleanup check-in: 581ba55290 user: rkeene tags: trunk | |
| 06:24 | 
Fixed KitDLL Build script to correctly create VFS directory before calling
make
 Added KitDLL cleaning to main kitcreator top-level build script Updated to allow KitDLL to ship check-in: f547179798 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [10513cf856] to [1482b68059].
| ︙ | ︙ | |||
31 32 33 34 35 36 37  | 
		rm -rf "${pkg}/src"
	fi
done
# We're all done if we're in clean or distclean mode
if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then
	rm -f tclkit-*
 | |  | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45  | 
		rm -rf "${pkg}/src"
	fi
done
# We're all done if we're in clean or distclean mode
if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then
	rm -f tclkit-*
	rm -f libtcl-*.*
	exit 0
fi
# Add packages implied by the additional arguments
if [ -z "${KITCREATOR_PKGS}" ]; then
	KITCREATOR_PKGS="tk itcl mk4tcl"
 | 
| ︙ | ︙ |