[Python-3000-checkins] r59157 - python/branches/py3k/PCbuild9/build_ssl.py

christian.heimes python-3000-checkins at python.org
Sat Nov 24 02:52:19 CET 2007


Author: christian.heimes
Date: Sat Nov 24 02:52:19 2007
New Revision: 59157

Modified:
   python/branches/py3k/PCbuild9/build_ssl.py
Log:
Fixed a newline problem

Modified: python/branches/py3k/PCbuild9/build_ssl.py
==============================================================================
--- python/branches/py3k/PCbuild9/build_ssl.py	(original)
+++ python/branches/py3k/PCbuild9/build_ssl.py	Sat Nov 24 02:52:19 2007
@@ -132,10 +132,12 @@
             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):


More information about the Python-3000-checkins mailing list