From 493e9b2614df79728deb40d5ec91edefa91a89c7 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Mon, 17 Jun 2019 12:50:45 -0700 Subject: Build fixes from fuzz target. --- tools/make_cmakelists.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') 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()) -- cgit v1.2.3