aubio: Fix build

%ci:no-build
This commit is contained in:
Tee KOBAYASHI 2022-11-01 05:46:44 +09:00 committed by xtkoba
parent ddc69454b2
commit 961d80407b
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- a/waflib/ConfigSet.py
+++ b/waflib/ConfigSet.py
@@ -146,7 +146,7 @@
Utils.writef(filename,''.join(buf))
def load(self,filename):
tbl=self.table
- code=Utils.readf(filename,m='rU')
+ code=Utils.readf(filename,m='r')
for m in re_imp.finditer(code):
g=m.group
tbl[g(2)]=eval(g(3))

View File

@ -0,0 +1,20 @@
--- a/waflib/Context.py
+++ b/waflib/Context.py
@@ -106,7 +106,7 @@
cache[node]=True
self.pre_recurse(node)
try:
- function_code=node.read('rU',encoding)
+ function_code=node.read('r',encoding)
exec(compile(function_code,node.abspath(),'exec'),self.exec_dict)
finally:
self.post_recurse(node)
@@ -346,7 +346,7 @@
pass
module=imp.new_module(WSCRIPT_FILE)
try:
- code=Utils.readf(path,m='rU',encoding=encoding)
+ code=Utils.readf(path,m='r',encoding=encoding)
except EnvironmentError:
raise Errors.WafError('Could not read the file %r'%path)
module_dir=os.path.dirname(path)