Differences From
Artifact [e140ad3217]:
23 23 if [ -f 'build/pre.sh' ]; then
24 24 if ! find 'kitsh/buildsrc/' -name configure -type f 2>/dev/null | grep configure >/dev/null; then
25 25 echo "Please remember to run 'build/pre.sh' if you expect this build to work." >&2
26 26 fi
27 27 fi
28 28
29 29 # Define the list of all packages, for cleaning purposes
30 -KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread dbus tls tclx"
30 +KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread dbus tls tclx tcc"
31 +
31 32 # Always rebuild kitsh
32 33 rm -f "kitsh/.success"
33 34 for pkg in ${KITCREATOR_ALLPKGS}; do
34 35 if [ "${mode}" != "retry" -o ! -f "${pkg}/.success" ]; then
35 36 rm -f "${pkg}/build.log" "${pkg}/.success"
36 37 rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build"
37 38