From 93808ce6cbfa0e5582610cd1c2cb88fe84cfaf6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 8 Dec 2021 12:12:55 +0100 Subject: [PATCH] Revert "Print a warning with unknown SCons variables to ease troubleshooting" This reverts commit c3f4d3afbed023c7cde76edb5a6dbcb4f75d2f27. --- SConstruct | 7 ------- 1 file changed, 7 deletions(-) diff --git a/SConstruct b/SConstruct index db8d756ed8d..9a8c5f13747 100644 --- a/SConstruct +++ b/SConstruct @@ -297,13 +297,6 @@ opts.Update(env_base) env_base["platform"] = selected_platform # Must always be re-set after calling opts.Update(). Help(opts.GenerateHelpText(env_base)) -# Detect and print a warning listing unknown SCons variables to ease troubleshooting. -unknown = opts.UnknownVariables() -if unknown: - print("WARNING: Unknown SCons variables were passed and will be ignored:") - for item in unknown.items(): - print(" " + item[0] + "=" + item[1]) - # add default include paths env_base.Prepend(CPPPATH=["#"])