Overview
Comment: | More "kit.exe" naming support |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
41666cf39983d3770a8ad64be6712aaf |
User & Date: | rkeene on 2015-03-31 22:32:52 |
Other Links: | manifest | tags |
Context
2015-04-02
| ||
20:27 | Added slightly better Mac OS X target support check-in: 197271cd1f user: rkeene tags: trunk | |
2015-03-31
| ||
22:32 | More "kit.exe" naming support check-in: 41666cf399 user: rkeene tags: trunk | |
22:29 | Added Mac OS X build support check-in: 9050965846 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [817759db49] to [f472cb4a86].
︙ | ︙ | |||
204 205 206 207 208 209 210 211 212 213 214 215 216 217 | if [ "${buildfailed}" != "0" ]; then echo 'WARNING: Build is likely incomplete or failed.' >&2 fi cp 'kitsh/build'/kitsh-*/libtclkit* . >/dev/null 2>/dev/null cp 'kitsh/build'/kitsh-*/kit "tclkit-${TCLVERS}" >/dev/null 2>/dev/null for postscript in common/post/*; do if [ ! -f "${postscript}" ]; then continue fi "${postscript}" | > > > | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | if [ "${buildfailed}" != "0" ]; then echo 'WARNING: Build is likely incomplete or failed.' >&2 fi cp 'kitsh/build'/kitsh-*/libtclkit* . >/dev/null 2>/dev/null cp 'kitsh/build'/kitsh-*/kit "tclkit-${TCLVERS}" >/dev/null 2>/dev/null if [ ! -f "tclkit-${TCLVERS}" ]; then cp 'kitsh/build'/kitsh-*/kit.exe "tclkit-${TCLVERS}" >/dev/null 2>/dev/null fi for postscript in common/post/*; do if [ ! -f "${postscript}" ]; then continue fi "${postscript}" |
︙ | ︙ |