Check-in [0e0d2f634d]
Overview
Comment:Fixed minor bug
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0e0d2f634da05b0c7f98ecdab70da7dda5072bb5
User & Date: rkeene on 2011-07-20 00:31:44
Other Links: manifest | tags
Context
2011-07-20
00:37
Fixed minor bug, take 2 check-in: 26aa2157b5 user: rkeene tags: trunk
00:31
Fixed minor bug check-in: 0e0d2f634d user: rkeene tags: trunk
00:06
Teaparty 0.9.7.x check-in: 47ff63a093 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/build_all.sh from [98c08187b6] to [1f0e2b9be4].

190
191
192
193
194
195
196

197
198



199
200
201
202
203
204
205
190
191
192
193
194
195
196
197


198
199
200
201
202
203
204
205
206
207







+
-
-
+
+
+







	if [ "${failed}" = "1" ]; then
		cp "${dir}/out/build-${PLATFORM}.log" "${dir}/failed-${PLATFORM}-`hostname`.log"

		rm -rf "${dir}/out"
		faileddirs="${faileddirs} ${dir}"
		echo "Failed to build ${dir}"
	else
		if [ "${CLEANONLY}" != "1" ]; then
		outdir="$(ls -1d "${dir}/out"/*/"${PLATFORM}/" | head -1)"
		mv "${dir}/out/build-${PLATFORM}.log" "${outdir}/build.log"
			outdir="$(ls -1d "${dir}/out"/*/"${PLATFORM}/" | head -1)"
			mv "${dir}/out/build-${PLATFORM}.log" "${outdir}/build.log"
		fi
	fi
done

# Cleanup is done at this point
if [ "${CLEANONLY}" = "1" ]; then
	exit 0
fi