From 331b23cd0564d307a8390918b8e55cc17c67020e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 24 May 2014 16:20:58 -0400 Subject: [PATCH] fix script breakage --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index a52dbe3d28..3fb33e13c6 100644 --- a/wscript +++ b/wscript @@ -148,7 +148,7 @@ def set_compiler_flags (conf,opt): # waf adds -O0 -g itself. thanks waf! is_clang = conf.env['CXX'][0].endswith('clang++') - if conf.options.cxx11 or bld.env['build_target'] == 'mavericks': + if conf.options.cxx11 or conf.env['build_target'] == 'mavericks': conf.check_cxx(cxxflags=["-std=c++11"]) cxx_flags.append('-std=c++11') if platform == "darwin":