Overview
Comment: | Updated to warn if KitCreator is run and "pre.sh" has not been run |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 95c04d527f26b646104dac97087f33bc8637c9dc |
User & Date: | rkeene on 2011-10-03 19:26:52 |
Other Links: | manifest | tags |
Context
2011-10-03
| ||
19:54 | Fixed bug in checking for the need to run "build/pre.sh" check-in: eaa71f15f8 user: rkeene tags: trunk | |
19:26 | Updated to warn if KitCreator is run and "pre.sh" has not been run check-in: 95c04d527f user: rkeene tags: trunk | |
19:08 | Updated to not use broken pre-generated Makefiles with Tk check-in: fb277571b4 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [f143b94d8a] to [d59182d0e5].
16 16 mode="clean" 17 17 fi 18 18 if [ "$1" = "distclean" ]; then 19 19 shift 20 20 21 21 mode="distclean" 22 22 fi 23 + 24 +# Verify that "pre.sh" has been run if this is a development snapshot of 25 +# KitCreator 26 +if [ -f 'build/pre.sh' ]; then 27 + if ! find 'kitsh/buildsrc/' -name configure -type f >/dev/null 2>/dev/null; then 28 + echo "Please remember to run 'build/pre.sh' if you expect this build to work." >&2 29 + fi 30 +fi 23 31 24 32 # Define the list of all packages, for cleaning purposes 25 33 KITCREATOR_ALLPKGS="kitsh tcl tclvfs zlib tk itcl mk4tcl thread" 26 34 for pkg in ${KITCREATOR_ALLPKGS}; do 27 35 rm -f "${pkg}/build.log" 28 36 rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" 29 37