Check-in [ea06c960df]
Overview
Comment:Updated to support using "kitcreator-build.sh" if it exists, instead of "build.sh" in a project directory
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ea06c960df795bf1b5b32c75055298ff04e20720
User & Date: rkeene on 2014-10-27 05:30:56
Other Links: manifest | tags
Context
2014-10-27
05:31
Added support for specifying that Tk should be linked dynamically check-in: 2ffc7ae71a user: rkeene tags: trunk
05:30
Updated to support using "kitcreator-build.sh" if it exists, instead of "build.sh" in a project directory check-in: ea06c960df user: rkeene tags: trunk
2014-10-25
04:10
KitCreator 0.9.1 check-in: f5ad57800d user: rkeene tags: trunk, 0.9.1
Changes

Modified kitcreator from [48230f22d5] to [08ce5d4f09].

164
165
166
167
168
169
170




171
172
173
174
175
176
177
178
		echo -n "Skipping ${pkg} ..."
	else
		echo -n "Building ${pkg} ..."

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





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

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







>
>
>
>
|







164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
		echo -n "Skipping ${pkg} ..."
	else
		echo -n "Building ${pkg} ..."

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

			build_script='./build.sh'
			if [ -x 'kitcreator-build.sh' ]; then
				build_script='./kitcreator-build.sh'
			fi
			"${build_script}" 3>&1 4>&2 > build.log 2>&1 || exit 1
		) || failed="1"
	fi

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