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