Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db30ca commit 345df17Copy full SHA for 345df17
1 file changed
Tools/freeze/freeze.py
@@ -298,8 +298,9 @@ def main():
298
cflags = defines + includes + ['$(OPT)']
299
libs = [os.path.join(binlib, 'libpython$(VERSION).a')]
300
301
- makevars = parsesetup.getmakevars(makefile_in)
302
somevars = {}
+ if os.path.exists(makefile_in):
303
+ makevars = parsesetup.getmakevars(makefile_in)
304
for key in makevars.keys():
305
somevars[key] = makevars[key]
306
0 commit comments