From c58cc58363174eb0172e8b31ac7232b2296fe9dd Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Tue, 22 Aug 2023 21:53:18 -0600 Subject: [PATCH] ardupilotwaf: Fix incorrect comment for cmake minimum version Signed-off-by: Ryan Friedman --- Tools/ardupilotwaf/cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/ardupilotwaf/cmake.py b/Tools/ardupilotwaf/cmake.py index 9ec9691c150ae..0616de6128ed6 100644 --- a/Tools/ardupilotwaf/cmake.py +++ b/Tools/ardupilotwaf/cmake.py @@ -23,7 +23,7 @@ the configuration to set a minimum version required for cmake. Example:: def configure(cfg): - cfg.CMAKE_MIN_VERSION = '3.5.2' + cfg.env.CMAKE_MIN_VERSION = '3.5.2' cfg.load('cmake') Usage example::