Kaydet (Commit) e39439e3 authored tarafından Christian Heimes's avatar Christian Heimes

Fixed a newline problem

üst e670bd4f
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment