diff -r 6d151993e980 -r 68af6b83ff7e scripts/build/debug/000-template.sh --- a/scripts/build/debug/000-template.sh Mon Jul 14 16:04:41 2008 +0000 +++ b/scripts/build/debug/000-template.sh Fri Oct 10 14:30:44 2008 +0000 @@ -1,19 +1,12 @@ # Template file for a debug utility -# Check here wether your debug tool is enabled or not. -# This will get redefined over and over again for each tool, so don't -# count on it in the functions below. -is_enabled="${CT_FOOBAR}" - # Small function to print the filename # Note that this function gets redefined over and over for each tool # It's of no use when building the toolchain proper, but shows all its # usefullness when saving the toolchain and building the tarball. -# You shall not echo anything if you're not enabled! # Echo the name of the file, without the extension, below. do_print_filename() { # For example: - # [ "${CT_FOOBAR}" = "y" ] || return 0 # echo "foobar-${CT_FOOBAR_VERSION}" : }