Overview
| Comment: | Updated to clean all packages prior to startup, even if they are not known packages | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 3bf152ce9972e41ec127cf9ef2df5933 | 
| User & Date: | rkeene on 2014-10-29 18:28:36 | 
| Other Links: | manifest | tags | 
Context
| 2014-10-31 | ||
| 16:31 | Fixed issue with ".sha1" files check-in: 2b5eb7b784 user: rkeene tags: trunk | |
| 2014-10-29 | ||
| 18:28 | Updated to clean all packages prior to startup, even if they are not known packages check-in: 3bf152ce99 user: rkeene tags: trunk | |
| 2014-10-27 | ||
| 05:31 | Added support for specifying that Tk should be linked dynamically check-in: 2ffc7ae71a user: rkeene tags: trunk | |
Changes
Modified kitcreator from [08ce5d4f09] to [41fe7ec950].
| ︙ | ︙ | |||
| 30 31 32 33 34 35 36 | fi # Define the list of all packages, for cleaning purposes KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread dbus tls tclx tcc4tcl" # Always rebuild kitsh rm -f "kitsh/.success" | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 
fi
# Define the list of all packages, for cleaning purposes
KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread dbus tls tclx tcc4tcl"
# Always rebuild kitsh
rm -f "kitsh/.success"
for pkg in ${KITCREATOR_ALLPKGS} ${KITCREATOR_PKGS}; do
	if [ "${mode}" != "retry" -o ! -f "${pkg}/.success" ]; then
		rm -f "${pkg}/build.log" "${pkg}/.success"
		rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build"
		rm -rf "${pkg}/src"/tmp-*
	fi
 | 
| ︙ | ︙ |