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 96 97 97 # Intall VFS onto kit 98 98 ## Determine if we have a Tclkit to do this work 99 99 TCLKIT="${TCLKIT:-tclkit}" 100 100 if echo 'exit 0' | "${TCLKIT}" >/dev/null 2>/dev/null; then 101 101 ## Install using existing Tclkit 102 102 ### Call installer 103 + echo "Running: \"${TCLKIT}\" installvfs.tcl kit starpack.vfs \"${ENABLECOMPRESSION}\"" 103 104 "${TCLKIT}" installvfs.tcl kit starpack.vfs "${ENABLECOMPRESSION}" 104 105 else 105 106 ## Bootstrap (cannot cross-compile) 106 107 ### Call installer 107 108 cp kit runkit 108 109 echo "set argv [list kit starpack.vfs {${ENABLECOMPRESSION}}]" > setup.tcl 109 110 echo 'if {[catch { clock seconds }]} { proc clock args { return 0 } }' >> setup.tcl 110 111 echo 'source installvfs.tcl' >> setup.tcl 112 + 113 + echo 'Running: echo | ./runkit' 111 114 echo | ./runkit 112 115 fi 113 116 114 117 exit 0 115 118 ) || exit 1 116 119 117 120 exit 0