From: Christian Heimes Date: Sat, 24 Nov 2007 01:52:19 +0000 (+0000) Subject: Fixed a newline problem X-Git-Tag: v3.0a2~100 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e39439e3c14a1e25531a4b9f403ef2a29c7f6d55;p=python Fixed a newline problem --- diff --git a/PCbuild9/build_ssl.py b/PCbuild9/build_ssl.py index db73e24333..2ccceec080 100644 --- a/PCbuild9/build_ssl.py +++ b/PCbuild9/build_ssl.py @@ -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):