Skip to content
Snippets Groups Projects

Resolve "The `-DBOOST_VERSION` flag has unnecessary and unwanted quotes"

Files
3
+ 2
2
@@ -207,7 +207,7 @@ class boost:
>>> from bob.extension import boost
>>> pkg = boost('>= 1.34')
>>> pkg.macros()
[('HAVE_BOOST', '1'), ('BOOST_VERSION', '"..."')]
[('HAVE_BOOST', '1')]
"""
return [('HAVE_BOOST', '1'), ('BOOST_VERSION', '"%s"' % self.version)]
return [('HAVE_BOOST', '1')]
Loading