When dumping the DokuWiki table of samples, don't leave the kernel headers version empty if using a custom headers set., and say so.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jul 25 14:08:03 2008 +0000 (2008-07-25)
changeset 72237968404e9b9
parent 721 22e17c5a094a
child 723 bea5656eb1d1
When dumping the DokuWiki table of samples, don't leave the kernel headers version empty if using a custom headers set., and say so.

/trunk/scripts/showSamples.sh | 6 5 1 0 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
scripts/showSamples.sh
     1.1 --- a/scripts/showSamples.sh	Fri Jul 25 14:03:09 2008 +0000
     1.2 +++ b/scripts/showSamples.sh	Fri Jul 25 14:08:03 2008 +0000
     1.3 @@ -53,7 +53,11 @@
     1.4          fi
     1.5      else
     1.6          printf "| ''${sample}''  "
     1.7 -        printf "|  ''${CT_KERNEL}''  "
     1.8 +        if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then
     1.9 +            printf "|  //custom//  "
    1.10 +        else
    1.11 +            printf "|  ''${CT_KERNEL}''  "
    1.12 +        fi
    1.13          printf "|  ${CT_KERNEL_VERSION}  "
    1.14          printf "|  ${CT_BINUTILS_VERSION}  "
    1.15          printf "|  ''${CT_CC}''  "