summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-06-17 12:50:45 -0700
committerJoshua Haberman <jhaberman@gmail.com>2019-06-17 12:50:45 -0700
commit493e9b2614df79728deb40d5ec91edefa91a89c7 (patch)
treef504e94c0a5b4784b5786241e57b2423b6e7f71a /tools
parent6ce5e722f16e74deff65db87eb1244f4396b2832 (diff)
Build fixes from fuzz target.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_cmakelists.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/make_cmakelists.py b/tools/make_cmakelists.py
index 22f3757..a4923c8 100755
--- a/tools/make_cmakelists.py
+++ b/tools/make_cmakelists.py
@@ -48,7 +48,7 @@ class BuildFileFunctions(object):
else:
print("Warning: no such file: " + file)
- if filter(IsSourceFile, files):
+ if list(filter(IsSourceFile, files)):
# Has sources, make this a normal library.
self.converter.toplevel += "add_library(%s\n %s)\n" % (
kwargs["name"],
@@ -272,8 +272,8 @@ def GetDict(obj):
globs = GetDict(converter)
-execfile("WORKSPACE", GetDict(WorkspaceFileFunctions(converter)))
-execfile("BUILD", GetDict(BuildFileFunctions(converter)))
+exec(open("WORKSPACE").read(), GetDict(WorkspaceFileFunctions(converter)))
+exec(open("BUILD").read(), GetDict(BuildFileFunctions(converter)))
with open(sys.argv[1], "w") as f:
f.write(converter.convert())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback