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: | 
bd1ae86760092a0726d2bd1b4142359d | 
| 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 181 182 183 184 185 186  | 
			KITTARGET_NAME="./${chkkittarget}"
			break
		done
		## Also create an executable named "kit" so that we can run it later
 | > > |  | 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"
 | 
| ︙ | ︙ |