commit: f9f016032cbd8f804c9144629b595008e966cdaa
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 8 16:04:52 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 9 16:54:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9f01603
linux-info.eclass: linux-info_get_any_version, die on failure
Make linux-info_get_any_version die if it can't determine any version
of the Linux kernel. This indicates a problem with the eclass code
(as it should not happen on Linux) and the missing KV_* variables
are going to cause random misbehavior and failures.
eclass/linux-info.eclass | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/eclass/linux-info.eclass b/eclass/linux-info.eclass
index d5eb0e73fcf..5adecb3a269 100644
--- a/eclass/linux-info.eclass
+++ b/eclass/linux-info.eclass
@@ -630,7 +630,9 @@ get_running_version() {
linux-info_get_any_version() {
if ! get_version; then
ewarn "Unable to calculate Linux Kernel version for build,
attempting to use running version"
- get_running_version
+ if ! get_running_version; then
+ die "Unable to determine any Linux Kernel version,
please report a bug"
+ fi
fi
}