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 140 ) 141 141 142 142 ( 143 143 cd '__tmp__' || exit 1 144 144 145 145 mkdir "libtclkit-sdk-${TCLVERS}" 146 146 147 - mv 'bin' 'lib' 'include' 'doc' "libtclkit-sdk-${TCLVERS}/" 147 + mv 'bin' 'lib' 'include' 'doc' "libtclkit-sdk-${TCLVERS}/" >/dev/null 2>/dev/null 148 148 149 149 if [ -e 'Android.mk' ]; then 150 150 mv 'Android.mk' "libtclkit-sdk-${TCLVERS}/" 151 151 fi 152 152 153 153 tar -cf - "libtclkit-sdk-${TCLVERS}" | gzip -9c > "../libtclkit-sdk-${TCLVERS}.tar.gz" 154 154 ) 155 155 156 156 rm -rf '__tmp__' 157 157 158 158 exit 0