Check-in [76e3414ae6]
Overview
Comment:Fixed extraneous warning
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 76e3414ae6817c4e71e930761e47fd4cd9144851
User & Date: rkeene on 2011-09-09 18:02:21
Other Links: manifest | tags
Context
2011-09-10
22:27
Updated to support linking against Tk 8.5 if Tk 8.4 is not available check-in: 54623be7eb user: rkeene tags: trunk
2011-09-09
18:02
Fixed extraneous warning check-in: 76e3414ae6 user: rkeene tags: trunk
18:01
Updated to install regardless of whether "dtplite" is available or not. check-in: bcecd323e5 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/build_all.sh from [f4e58c31b0] to [feba34159a].

191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
		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" >/dev/null 2>/dev/null
		fi
	fi
done

# Cleanup is done at this point







|







191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
		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}/" 2>/dev/null | head -1)"

			mv "${dir}/out/build-${PLATFORM}.log" "${outdir}/build.log" >/dev/null 2>/dev/null
		fi
	fi
done

# Cleanup is done at this point