Overview
SHA1: | bd1ae86760092a0726d2bd1b4142359d6af25b63 |
---|---|
Date: | 2017-08-18 14:22:34 |
User: | rkeene |
Comment: | Updated to allow the user to specify additional arguments to "make" when building "tclsh" |
Timelines: | family | ancestors | descendants | both | trunk |
Downloads: | Tarball | ZIP archive |
Other Links: | files | file ages | folders | manifest |
Tags And Properties
- branch=trunk inherited from [0864309db2]
- sym-trunk inherited from [0864309db2]
Context
2017-08-18
| ||
14:22 | [362db9bf50] Ignore errors when moving files into the SDK directory (user: rkeene, tags: trunk) | |
14:22 | [bd1ae86760] Updated to allow the user to specify additional arguments to "make" when building "tclsh" (user: rkeene, tags: trunk) | |
13:54 | [7677216774] Updated to include "tclsh" in the SDK (user: rkeene, tags: trunk) | |
Changes
Modified kitsh/build.sh from [7664997e0e] to [ae00c6fdc3].
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
KITTARGET_NAME="./${chkkittarget}" break done ## Also create an executable named "kit" so that we can run it later ${MAKE:-make} tclsh if [ -f "tclsh.exe" ]; then cp tclsh.exe kit.exe else cp tclsh kit fi else ## The executable is always named "kit" |
> > | |
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
KITTARGET_NAME="./${chkkittarget}" break done ## Also create an executable named "kit" so that we can run it later eval tclshExtraMakeArgs=(${KC_KITSH_TCLSH_EXTRA_MAKE_ARGS}) echo "Running: ${MAKE:-make} tclsh ${tclshExtraMakeArgs[@]}" ${MAKE:-make} tclsh "${tclshExtraMakeArgs[@]}" if [ -f "tclsh.exe" ]; then cp tclsh.exe kit.exe else cp tclsh kit fi else ## The executable is always named "kit" |