[Unstable][PATCH 1/2] UBUNTU: [Packaging] rules: Explicitly set do_*tools* variables to false

Juerg Haefliger juerg.haefliger at canonical.com
Thu Dec 19 13:00:46 UTC 2024


If do_tools != true, set all tools sub-variables explicitly to false
rather than null. This does not change the functionality, just makes
the output of printenv more explicit.

Signed-off-by: Juerg Haefliger <juerg.haefliger at canonical.com>
---
 debian/rules | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/debian/rules b/debian/rules
index c9943337aa2c..34c065178c65 100755
--- a/debian/rules
+++ b/debian/rules
@@ -113,10 +113,10 @@ endif
 
 # Disable tools build and packaging if do_tools != true
 ifneq ($(do_tools),true)
-	do_linux_tools=
-	do_cloud_tools=
-	do_tools_common=
-	do_tools_host=
+	do_linux_tools = false
+	do_cloud_tools = false
+	do_tools_common = false
+	do_tools_host = false
 endif
 
 # Either tools package needs the common source preparation
-- 
2.43.0




More information about the kernel-team mailing list