Differences From Artifact [de80aa2117]:
- File common/common.sh — part of check-in [641eee5dc4] at 2016-12-13 19:32:50 on branch trunk — Updated to latest version of TclTLS and update common build system to deal with more diverse Tcl configure scripts (user: rkeene, size: 7156) [annotate] [blame] [check-ins using]
To Artifact [e672e78acf]:
- File common/common.sh — part of check-in [008f3ba007] at 2018-06-10 06:15:45 on branch trunk — Specify Tcl package name and init function, if specified (user: rkeene, size: 7307) [annotate] [blame] [check-ins using]
| ︙ | |||
269 270 271 272 273 274 275 276 277 278 279 280 281 282 | 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | + + + + |
# Install files needed by installation
cp -r "${installdir}/lib" "${runtimedir}" || return 1
# Create pkgIndex files if needed
if [ -z "${tclpkg}" ]; then
tclpkg="${pkg}"
fi
echo "${tclpkg}" > "${installdir}/tcl-pkg-name"
if [ -n "${tclpkg_initfunc}" ]; then
echo "${tclpkg_initfunc}" > "${installdir}/tcl-init-func"
fi
if [ -z "${tclpkgversion}" ]; then
tclpkgversion="${version}"
fi
runtimelibdir="${runtimedir}/lib"
|
| ︙ |