diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-01 20:23:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 20:23:59 +0100 |
commit | 1db16f08d3447428d627e8cc1a77b5b5825f12d3 (patch) | |
tree | fbc3735d28092c74061f9c95c00fe728f62e85de | |
parent | 0f4e2cd40c498b2152576b448576e1ecf0ee8208 (diff) | |
parent | 9479bfe5f5a3a57f6688e177a61b404407141598 (diff) |
Merge pull request #45634 from Calinou/fix-scons-compilation-db-comment
Fix incorrect version requirement in the SCons compilation DB comment
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 2281b8a77f..3795fc1c3c 100644 --- a/SConstruct +++ b/SConstruct @@ -308,7 +308,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) |