diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-25 14:08:03 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-25 14:08:03 +0000 |
commit | 96089bc58c23e2fdb08c06b3c5e2e3b79076ce9a (patch) | |
tree | af87f1c11df79e02fa8cba4321330b6677db9773 /scripts/showSamples.sh | |
parent | 9a9d6090359f1cc516ba47eeaf0e11d167ab475e (diff) | |
download | crosstool-ng-96089bc58c23e2fdb08c06b3c5e2e3b79076ce9a.tar.gz crosstool-ng-96089bc58c23e2fdb08c06b3c5e2e3b79076ce9a.tar.bz2 crosstool-ng-96089bc58c23e2fdb08c06b3c5e2e3b79076ce9a.zip |
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(-)
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index 33bfba84..ce823dc1 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -53,7 +53,11 @@ dump_single_sample() { fi else printf "| ''${sample}'' " - printf "| ''${CT_KERNEL}'' " + if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then + printf "| //custom// " + else + printf "| ''${CT_KERNEL}'' " + fi printf "| ${CT_KERNEL_VERSION} " printf "| ${CT_BINUTILS_VERSION} " printf "| ''${CT_CC}'' " |