Differences From Artifact [b70457f0fd]:
- Executable file kitsh/build.sh — part of check-in [12600639d9] at 2010-09-26 04:48:40 on branch trunk — Added echo lines for every "configure", and "make" (user: rkeene, size: 3165) [annotate] [blame] [check-ins using]
To Artifact [2be7df7f4b]:
- Executable file
kitsh/build.sh
— part of check-in
[8c0ee91103]
at
2011-02-27 20:26:01
on branch trunk
— Updated to emit TclVFS faillure if "make install" fails.
Updated to log which Tclkit is being used to install the VFS (user: rkeene, size: 3289) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# Intall VFS onto kit
## Determine if we have a Tclkit to do this work
TCLKIT="${TCLKIT:-tclkit}"
if echo 'exit 0' | "${TCLKIT}" >/dev/null 2>/dev/null; then
## Install using existing Tclkit
### Call installer
"${TCLKIT}" installvfs.tcl kit starpack.vfs "${ENABLECOMPRESSION}"
else
## Bootstrap (cannot cross-compile)
### Call installer
cp kit runkit
echo "set argv [list kit starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl
echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl
echo 'source installvfs.tcl' >> setup.tcl
echo | ./runkit
fi
exit 0
) || exit 1
exit 0
| > > > | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# Intall VFS onto kit
## Determine if we have a Tclkit to do this work
TCLKIT="${TCLKIT:-tclkit}"
if echo 'exit 0' | "${TCLKIT}" >/dev/null 2>/dev/null; then
## Install using existing Tclkit
### Call installer
echo "Running: \"${TCLKIT}\" installvfs.tcl kit starpack.vfs \"${ENABLECOMPRESSION}\""
"${TCLKIT}" installvfs.tcl kit starpack.vfs "${ENABLECOMPRESSION}"
else
## Bootstrap (cannot cross-compile)
### Call installer
cp kit runkit
echo "set argv [list kit starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl
echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl
echo 'source installvfs.tcl' >> setup.tcl
echo 'Running: echo | ./runkit'
echo | ./runkit
fi
exit 0
) || exit 1
exit 0
|