Check-in [ea9a5ecf91]
Overview
Comment:Updated to be less verbose on missing directories
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ea9a5ecf9176cac26fc49b314c1b87d9e39d2568
User & Date: rkeene on 2010-09-26 04:41:00
Other Links: manifest | tags
Context
2010-09-26
04:41
Began work on new pure-Tcl metakit, which will replace readkit-converted mk4tcl check-in: 7bfc5cf0e2 user: rkeene tags: trunk
04:41
Updated to be less verbose on missing directories check-in: ea9a5ecf91 user: rkeene tags: trunk
04:40
Added preliminary support for using a Tcl-based metakit reader (mk4tcl.tcl, based off ReadKit) if Mk4tcl support not found

Updated mk4tcl to cleanup if build fails, to prevent false detection check-in: 44e0b4f94c user: rkeene tags: trunk

Changes

Modified kitcreator from [be98577a11] to [b45aa7beb7].

37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
		continue
	fi

	echo -n "Building ${pkg} ..."

	failed="0"
	(
		cd "${pkg}" || exit 1

		./build.sh > build.log 2>&1 || exit 1
	) || failed="1"

	if [ "${failed}" = "1" ]; then
		echo " failed."
		failedpkgs="${failedpkgs} ${pkg}"







|







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
		continue
	fi

	echo -n "Building ${pkg} ..."

	failed="0"
	(
		cd "${pkg}" >/dev/null 2>/dev/null || exit 1

		./build.sh > build.log 2>&1 || exit 1
	) || failed="1"

	if [ "${failed}" = "1" ]; then
		echo " failed."
		failedpkgs="${failedpkgs} ${pkg}"