Fixed a newline problem

This commit is contained in:
Christian Heimes 2007-11-24 01:52:19 +00:00
parent e670bd4f63
commit e39439e3c1

View File

@ -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):