Kaydet (Commit) f63277d5 authored tarafından Tarek Ziadé's avatar Tarek Ziadé

Merged revisions 73348 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73348 | tarek.ziade | 2009-06-11 11:13:36 +0200 (Thu, 11 Jun 2009) | 1 line

  #6263 fixed syntax error in distutils.cygwinccompiler
........
üst f8f05faa
...@@ -76,7 +76,7 @@ def get_msvcr(): ...@@ -76,7 +76,7 @@ def get_msvcr():
# VS2008 / MSVC 9.0 # VS2008 / MSVC 9.0
return ['msvcr90'] return ['msvcr90']
else: else:
raise ValueError("Unknown MS Compiler version %i " % msc_Ver) raise ValueError("Unknown MS Compiler version %s " % msc_ver)
class CygwinCCompiler (UnixCCompiler): class CygwinCCompiler (UnixCCompiler):
......
...@@ -234,6 +234,8 @@ Core and Builtins ...@@ -234,6 +234,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6263: Fixed syntax error in distutils.cygwincompiler.
- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$` - Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$`
in Makefiles. This prevents compile errors when using syntax like: in Makefiles. This prevents compile errors when using syntax like:
`LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe. `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe.
......
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