- Add patch to fix syntax error in extras/boost.py. - Remove hidden file.epel8
parent
12a9b77d26
commit
c9a5e9c26f
@ -0,0 +1,22 @@
|
|||||||
|
Index: waflib/extras/boost.py
|
||||||
|
===================================================================
|
||||||
|
--- waflib/extras/boost.py (revision 10894)
|
||||||
|
+++ waflib/extras/boost.py (revision 10895)
|
||||||
|
@@ -319,7 +319,7 @@
|
||||||
|
self.start_msg(kw.get('msg_includes', 'Checking for boost include path'))
|
||||||
|
ret = self.find_boost_includes(kw)
|
||||||
|
|
||||||
|
- except Errors.ConfigurationError, e:
|
||||||
|
+ except Errors.ConfigurationError as e:
|
||||||
|
if 'errmsg' in kw:
|
||||||
|
self.end_msg(kw['errmsg'], 'YELLOW')
|
||||||
|
raise e
|
||||||
|
@@ -331,7 +331,7 @@
|
||||||
|
self.start_msg('Checking for library boost_'+lib)
|
||||||
|
try:
|
||||||
|
self.find_boost_library(lib, kw)
|
||||||
|
- except Errors.ConfigurationError, e:
|
||||||
|
+ except Errors.ConfigurationError as e:
|
||||||
|
ret = False
|
||||||
|
if 'errmsg' in kw:
|
||||||
|
self.end_msg(kw['errmsg'], 'YELLOW')
|
Loading…
Reference in new issue