commit | cd38c84958fc85e451fffd644417e227e816a2eb | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun May 05 00:24:41 2013 -0700 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun May 05 00:24:41 2013 -0700 |
tree | b28ca1f98f2755accb46d8ee2db31ac266411439 | |
parent | b66a89b6fd5946105628008aa7df7c9534f50158 [diff] |
build: fixing bug with detection of installed boost libraries Thanks to Menghan Li for reporting the bug
diff --git a/wscript b/wscript index 5547ff3..db310d3 100644 --- a/wscript +++ b/wscript
@@ -36,7 +36,7 @@ boost_lib_name = boost_lib_name[6:] if boost_lib_name.endswith("-mt"): boost_lib_name = boost_lib_name[:-3] - present_boost_libs.append(boost_lib_name) + present_boost_libs.append(boost_lib_name) missing_boost_libs = [lib for lib in REQUIRED_BOOST_LIBS if lib not in present_boost_libs]