From 3a925c85e3e262c8a1036fcdcf703302d32cda05 Mon Sep 17 00:00:00 2001 From: "Ignacio R. Morelle" Date: Tue, 13 Sep 2016 19:40:58 -0300 Subject: [PATCH] scons: Fix compiler switch typo Accidentally introduced in 2483fc80e4a57f7cdc0ff9fbeaed08d85699d0d6, oops. Didn't become evident unless hitting other compiler errors, though. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 2fde03e5a40..91b9f8d1136 100755 --- a/SConstruct +++ b/SConstruct @@ -512,7 +512,7 @@ for env in [test_env, campaignd_env, client_env, env]: env.AppendUnique(CXXFLAGS = ["-fopenmp"], LIBS = ["gomp"]) if env['strict']: - env.AppendUnique(CCFLAGS = Split("-Werror $(-Wno-unsused-local-typedefs$)")) + env.AppendUnique(CCFLAGS = Split("-Werror $(-Wno-unused-local-typedefs$)")) env.AppendUnique(CXXFLAGS = Split("-Wold-style-cast")) if env['sanitize']: env.AppendUnique(CCFLAGS = ["-fsanitize=" + env["sanitize"]], LINKFLAGS = ["-fsanitize=" + env["sanitize"]])