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