Check-in [362db9bf50]
Overview
Comment:Ignore errors when moving files into the SDK directory
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 362db9bf5085138c6e7319c5592211ad26a8555d
User & Date: rkeene on 2017-08-18 14:22:50
Other Links: manifest | tags
Context
2017-09-01
00:31
Upgraded to latest TclTLS check-in: 742088eb80 user: rkeene tags: trunk
2017-08-18
14:22
Ignore errors when moving files into the SDK directory check-in: 362db9bf50 user: rkeene tags: trunk
14:22
Updated to allow the user to specify additional arguments to "make" when building "tclsh" check-in: bd1ae86760 user: rkeene tags: trunk
Changes

Modified common/post/sdk.sh from [6787bbb86e] to [7f11cc4be9].

140
141
142
143
144
145
146
147

148
149
150
151
152
153
154
155
156
157
158
140
141
142
143
144
145
146

147
148
149
150
151
152
153
154
155
156
157
158







-
+











)

(
	cd '__tmp__' || exit 1

	mkdir "libtclkit-sdk-${TCLVERS}"

	mv 'bin' 'lib' 'include' 'doc' "libtclkit-sdk-${TCLVERS}/"
	mv 'bin' 'lib' 'include' 'doc' "libtclkit-sdk-${TCLVERS}/" >/dev/null 2>/dev/null

	if [ -e 'Android.mk' ]; then
		mv 'Android.mk' "libtclkit-sdk-${TCLVERS}/"
	fi

	tar -cf - "libtclkit-sdk-${TCLVERS}" | gzip -9c > "../libtclkit-sdk-${TCLVERS}.tar.gz"
)

rm -rf '__tmp__'

exit 0