This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".
The branch, STABLE2 has been updated
via 4a827a5defcc8c5a843b12442e1411beffe712f5 (commit)
from 0fe8d3648fd3e23828516c8f0346703b4d885739 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
diff --git a/configure b/configure
index 44961b2..817ca4f 100755
--- a/configure
+++ b/configure
@@ -259,6 +259,11 @@ sub kernel_version {
}
}
close AUTOCONF;
+ # Warn and continue if CONFIG_KERNELVERSION was not found
+ if (!$current_version) {
+ print " WARNING: Could not determine kernel version.
";
+ return 1;
+ }
# leaving only the numbers from the lines
# this is faster then split and doesn't alocate useless arrays
$current_version =~ s/.*"(.*)"
/$1/;