From 4c6996e8ccf3c24f0cabbdf7568739316f28aa73 Mon Sep 17 00:00:00 2001 From: sarath Govind Date: Sun, 9 Mar 2025 11:52:07 +0100 Subject: [PATCH] Fix: Correcting syntax issue in SConstruct There is a compilation error found, when building this library using scons. Used the latest version of scons v4.9.0 and the python version 3.9.21 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index ae3df10bc..5ab3cdf48 100644 --- a/SConstruct +++ b/SConstruct @@ -32,7 +32,7 @@ elif os.environ.has_key('BOOST_INCLUDES') and os.environ.has_key('BOOST_LIBS'): env['BOOST_INCLUDES'] = os.environ['BOOST_INCLUDES'] env['BOOST_LIBS'] = os.environ['BOOST_LIBS'] else: - raise SCons.Errors.UserError, "Neither BOOST_ROOT, nor BOOST_INCLUDES + BOOST_LIBS was set!" + raise SCons.Errors.UserError("Neither BOOST_ROOT, nor BOOST_INCLUDES + BOOST_LIBS was set!") ## Custom OpenSSL if os.environ.has_key('OPENSSL_PATH'):