mirror of
https://github.com/python/cpython.git
synced 2024-11-29 04:44:13 +08:00
Fixed a newline problem
This commit is contained in:
parent
e670bd4f63
commit
e39439e3c1
@ -132,10 +132,12 @@ def fix_makefile(makefile):
|
||||
if line.startswith("MKDIR="):
|
||||
line = "MKDIR=mkdir\n"
|
||||
if line.startswith("CFLAG="):
|
||||
line = line.strip()
|
||||
for algo in ("RC5", "MDC2", "IDEA"):
|
||||
noalgo = " -DOPENSSL_NO_%s" % algo
|
||||
if noalgo not in line:
|
||||
line = line + noalgo
|
||||
line = line + '\n'
|
||||
fout.write(line)
|
||||
|
||||
def run_configure(configure, do_script):
|
||||
|
Loading…
Reference in New Issue
Block a user