From c344bf88c615099aa4b64a125e09bb602be11a29 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 1 Feb 2021 17:09:42 +0100 Subject: [PATCH] Fix incorrect version requirement in the SCons compilation DB comment (cherry picked from commit 9479bfe5f5a3a57f6688e177a61b404407141598) --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index e5a95f9b2c0..e7249956936 100644 --- a/SConstruct +++ b/SConstruct @@ -304,7 +304,7 @@ if selected_platform in platform_list: else: env = env_base.Clone() - # Compilation DB requires SCons 3.1.1+. + # Generating the compilation DB (`compile_commands.json`) requires SCons 4.0.0 or later. from SCons import __version__ as scons_raw_version scons_ver = env._get_major_minor_revision(scons_raw_version)