Check-in [baaf0c5896]
Overview
Comment:Added back safe successful exits
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: baaf0c5896754cda07c0df41f61824f24be6d269
User & Date: rkeene on 2010-09-26 04:42:48
Other Links: manifest | tags
Context
2010-09-26
04:42
Updated to try to link statically to zlib check-in: 580c833532 user: rkeene tags: trunk
04:42
Added back safe successful exits check-in: baaf0c5896 user: rkeene tags: trunk
04:42
Updated to report failure if building of Tk fails check-in: 4c532aef85 user: rkeene tags: trunk
Changes

Modified tk/build.sh from [9f9636ed5a] to [6f28ed378d].

95
96
97
98
99
100
101


102
103
104
		rm -rf "${OUTDIR}/lib"/tk*/demos

		"${STRIP:-strip}" -g "${OUTDIR}"/lib/tk*/*.so >/dev/null 2>/dev/null
		find "${OUTDIR}" -type f -name '*.a' | xargs rm -f >/dev/null 2>/dev/null

		break
	done


) || exit 1

exit 0







>
>



95
96
97
98
99
100
101
102
103
104
105
106
		rm -rf "${OUTDIR}/lib"/tk*/demos

		"${STRIP:-strip}" -g "${OUTDIR}"/lib/tk*/*.so >/dev/null 2>/dev/null
		find "${OUTDIR}" -type f -name '*.a' | xargs rm -f >/dev/null 2>/dev/null

		break
	done

	exit 0
) || exit 1

exit 0