summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-27 04:00:19 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-08-27 04:00:19 (GMT)
commit5de141f157ab372f5dd5b28c17442e41e15101af (patch)
treef8c8f2d06c467253ca6015aad2033d9f83144a34 /Misc
parentc427b8d517469005d53128e9656213a3ec141890 (diff)
downloadcpython-5de141f157ab372f5dd5b28c17442e41e15101af.zip
cpython-5de141f157ab372f5dd5b28c17442e41e15101af.tar.gz
cpython-5de141f157ab372f5dd5b28c17442e41e15101af.tar.bz2
Issue #25825: Fix references to $(LIBPL) installation path on AIX
In Subversion r86731, the path was changed from $(BINLIBDEST)/config to $(LIBDEST)/config-$(LDVERSION).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 290cf86..e85587e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -220,8 +220,10 @@ Build
- Issue #27713: Suppress spurious build warnings when updating importlib's
bootstrap files. Patch by Xiang Zhang
-- Issue #25825: Correct the references to Modules/python.exp, which is
- required on AIX. The references were accidentally changed in 3.5.0a1.
+- Issue #25825: Correct the references to Modules/python.exp and ld_so_aix,
+ which are required on AIX. This updates references to an installation path
+ that was changed in 3.2a4, and undoes changed references to the build tree
+ that were made in 3.5.0a1.
- Issue #27453: CPP invocation in configure must use CPPFLAGS. Patch by
Chi Hsuan Yen.