Check-in [9a06656e8e]
Overview
Comment:Updated to install KitCreator module into correctly named directory
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9a06656e8e5870e5bdb724bc916701d98d64f22d
User & Date: rkeene on 2014-10-25 04:35:09
Other Links: manifest | tags
Context
2014-10-27
05:32
Renamed KitCreator build script to be more explicit about its purpose (requires newest KitCreator) check-in: 8b252fe5e4 user: rkeene tags: trunk
2014-10-25
04:35
Updated to install KitCreator module into correctly named directory check-in: 9a06656e8e user: rkeene tags: trunk
03:34
Post-release version increment check-in: 3d130feb5f user: rkeene tags: trunk
Changes

Modified build.sh from [4362283f8d] to [f09c85c9f1].

14
15
16
17
18
19
20
21
22
23
24




14
15
16
17
18
19
20




21
22
23
24







-
-
-
-
+
+
+
+
echo "${TCL_CC} ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -o tuapi.o -c tuapi.c"
eval ${TCL_CC} ${TCL_DEFS} ${TCL_INCLUDE_SPEC} -o tuapi.o -c tuapi.c
ar rcu libtuapi.a tuapi.o
ranlib libtuapi.a

echo 'package ifneeded tuapi '"${tuapi_version}"' [list load {} tuapi]' > pkgIndex.tcl

mkdir -p inst/lib/tuapi-0.1
mkdir -p out/lib/tuapi-0.1
cp libtuapi.a inst/lib/tuapi-0.1
cp pkgIndex.tcl out/lib/tuapi-0.1
mkdir -p inst/lib/tuapi-${tuapi_version}
mkdir -p out/lib/tuapi-${tuapi_version}
cp libtuapi.a inst/lib/tuapi-${tuapi_version}
cp pkgIndex.tcl out/lib/tuapi-${tuapi_version}