Overview
| Comment: | KitCreator 0.2.1.x
 Fixed failure to clean kitsh directory when producing releases  | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 0.2.1 | 
| Files: | files | file ages | folders | 
| SHA1: | 
65a0497bd0353e4344057e5086d04f89 | 
| User & Date: | rkeene on 2010-09-26 04:42:28 | 
| Other Links: | manifest | tags | 
Context
| 
   2010-09-26 
 | ||
| 04:42 | 
KitCreator 0.2.2.x
 Upgraded to latest ZLib Updated ZLIB URL to work even when it is not the latest version, since the zlib website only hosts the current version check-in: 6221943337 user: rkeene tags: trunk, 0.2.2 | |
| 04:42 | 
KitCreator 0.2.1.x
 Fixed failure to clean kitsh directory when producing releases check-in: 65a0497bd0 user: rkeene tags: trunk, 0.2.1 | |
| 04:42 | KitCreator 0.2.0.x check-in: b9f7f215ae user: rkeene tags: trunk, 0.2.0 | |
Changes
Modified build/makearch.info from [5ceea91366] to [06687ddac9].
| ︙ | ︙ | |||
12 13 14 15 16 17 18  | # If set to "auto" it will be maintained in a file called .version # in the source directory and the revision will be incremented # each time a "makearch" is done. # # If @@SVNLCR@@ is used anywhere in this version number, it will be # replaced with the highest last-changed-rev from the output of # svn info -R (or 0)  | |  | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26  | 
# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
#   svn info -R    (or 0)
VERS="0.2.1.@@SVNLCR@@"
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
#     @@UTIL@@ becomes the utility name ${UTIL}
#     @@VERS@@ becomes the utility version
#     @@DATE@@ becomes the current date
 | 
| ︙ | ︙ | 
Modified build/pre.sh from [e1071070fa] to [24cc7de513].
| ︙ | ︙ | |||
13 14 15 16 17 18 19  | rm -f *~ ./configure || exit 1 make mk4tcl.tcl.h make distclean ) || exit 1  | > >  | 13 14 15 16 17 18 19 20 21  | rm -f *~ ./configure || exit 1 make mk4tcl.tcl.h make distclean ) || exit 1 find . -name '.*.sw?' -type f | xargs rm -f  | 
Modified kitcreator from [335e335ef4] to [f500eec8e3].
| ︙ | ︙ | |||
18 19 20 21 22 23 24  | if [ "$1" = "distclean" ]; then shift mode="distclean" fi # Define the list of all packages, for cleaning purposes  | |  | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32  | 
if [ "$1" = "distclean" ]; then
	shift
	mode="distclean"
fi
# Define the list of all packages, for cleaning purposes
KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread"
for pkg in ${KITCREATOR_ALLPKGS}; do
	rm -f "${pkg}/build.log"
	rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build"
	if [ "${mode}" = "distclean" ]; then
		rm -rf "${pkg}/src"
	fi
 | 
| ︙ | ︙ |