summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-06-11 08:12:20 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-06-11 08:12:20 (GMT)
commit25d2bae1c9ece8d612558b27518026487ce0eca0 (patch)
tree4c45630fb72e3a932d7829973466ff2776d29a2b /Misc
parentd81333c5409ed8eb1e5895949fb6f75e9a300e37 (diff)
downloadcpython-25d2bae1c9ece8d612558b27518026487ce0eca0.zip
cpython-25d2bae1c9ece8d612558b27518026487ce0eca0.tar.gz
cpython-25d2bae1c9ece8d612558b27518026487ce0eca0.tar.bz2
Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in Makefiles
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index df6f5b3..f4fb3fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -317,6 +317,10 @@ Core and Builtins
Library
-------
+- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$`
+ in Makefiles. This prevents compile errors when using syntax like:
+ `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe.
+
- Issue #5767: Removed sgmlop support from xmlrpclib.
- Issue #6131: test_modulefinder leaked when run after test_distutils.