Differences From Artifact [f143b94d8a]:
- Executable file
kitcreator
— part of check-in
[a6a6c489dc]
at
2011-10-03 15:31:35
on branch trunk
— Updated to try to build Tk in the same sub-directory as Tcl first
Updated Tcl to try to build in the macosx directory first on Darwin (user: rkeene, size: 4025) [annotate] [blame] [check-ins using]
To Artifact [d59182d0e5]:
- Executable file kitcreator — part of check-in [95c04d527f] at 2011-10-03 19:26:52 on branch trunk — Updated to warn if KitCreator is run and "pre.sh" has not been run (user: rkeene, size: 4317) [annotate] [blame] [check-ins using]
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + + + + + + + | mode="clean" fi if [ "$1" = "distclean" ]; then shift mode="distclean" fi # Verify that "pre.sh" has been run if this is a development snapshot of # KitCreator if [ -f 'build/pre.sh' ]; then if ! find 'kitsh/buildsrc/' -name configure -type f >/dev/null 2>/dev/null; then echo "Please remember to run 'build/pre.sh' if you expect this build to work." >&2 fi fi # Define the list of all packages, for cleaning purposes KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread" for pkg in ${KITCREATOR_ALLPKGS}; do rm -f "${pkg}/build.log" rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" |
︙ |