Differences From Artifact [b2dce588fe]:
- Executable file kitcreator — part of check-in [021ebbd5e8] at 2010-09-26 04:41:28 on branch trunk — Added support for the Thread package if asked to compile a threaded Tcl (user: rkeene, size: 1634) [annotate] [blame] [check-ins using]
To Artifact [2e7fd89fb9]:
- Executable file
kitcreator
— part of check-in
[e251d16623]
at
2010-09-26 04:41:32
on branch trunk
— Clarified licensing terms
Updated "clean"/"distclean" options to clean optional packages (user: rkeene, size: 1792) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
mode="clean"
fi
if [ "$1" = "distclean" ]; then
shift
mode="distclean"
fi
CONFIGUREEXTRA="$@"
export CONFIGUREEXTRA
# Add packages implied by the additional arguments
if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then
ADDPKGS="${ADDPKGS} thread"
| > > > > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
mode="clean"
fi
if [ "$1" = "distclean" ]; then
shift
mode="distclean"
fi
if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then
# List all additional packages here so that they get cleaned up
ADDPKGS="${ADDPKGS} thread"
fi
CONFIGUREEXTRA="$@"
export CONFIGUREEXTRA
# Add packages implied by the additional arguments
if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then
ADDPKGS="${ADDPKGS} thread"
|
| ︙ | ︙ |