Overview
Comment: | Fixed bug in checking for the need to run "build/pre.sh" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
eaa71f15f8210d37e4eab964bb26cabf |
User & Date: | rkeene on 2011-10-03 19:54:18 |
Other Links: | manifest | tags |
Context
2011-10-03
| ||
20:20 |
Updated to hide warnings while running kitcreator distclean in pre.sh
Added workaround for Mac OS X referencing headers in "tclInt.h" that it does not setup a way access using tclConfig.sh check-in: b13d288f20 user: rkeene tags: trunk | |
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 | |
Changes
Modified kitcreator from [d59182d0e5] to [ed95cc9314].
︙ | ︙ | |||
20 21 22 23 24 25 26 | mode="distclean" fi # Verify that "pre.sh" has been run if this is a development snapshot of # KitCreator if [ -f 'build/pre.sh' ]; then | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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 2>/dev/null | grep configure >/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 |
︙ | ︙ |