From f9f016032cbd8f804c9144629b595008e966cdaa Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 8 Mar 2018 17:04:52 +0100 Subject: 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 d5eb0e73fcfa..5adecb3a2696 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 } -- cgit v1.2.3-65-gdbad