changeset: 102928:5a05c0eeefc3 parent: 102927:72e034afeb55 parent: 102926:ca1ddd365f5f user: Martin Panter date: Sat Aug 27 04:07:54 2016 +0000 files: Misc/NEWS configure configure.ac description: Issue #25825: Merge $(LIBPL) fix from 3.5 diff -r 72e034afeb55 -r 5a05c0eeefc3 Misc/NEWS --- a/Misc/NEWS Sat Aug 27 04:03:26 2016 +0000 +++ b/Misc/NEWS Sat Aug 27 04:07:54 2016 +0000 @@ -89,6 +89,12 @@ - Issue #27787: Call gc.collect() before checking each test for "dangling threads", since the dangling threads are weak references. +Build +----- + +- Issue #25825: Update references to the $(LIBPL) installation path on AIX. + This path was changed in 3.2a4. + What's New in Python 3.6.0 alpha 4 ================================== diff -r 72e034afeb55 -r 5a05c0eeefc3 configure --- a/configure Sat Aug 27 04:03:26 2016 +0000 +++ b/configure Sat Aug 27 04:07:54 2016 +0000 @@ -9079,7 +9079,7 @@ case $ac_sys_system/$ac_sys_release in AIX*) BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp" - LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp" + LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp" ;; IRIX/5*) LDSHARED="ld -shared";; IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";; diff -r 72e034afeb55 -r 5a05c0eeefc3 configure.ac --- a/configure.ac Sat Aug 27 04:03:26 2016 +0000 +++ b/configure.ac Sat Aug 27 04:07:54 2016 +0000 @@ -2315,7 +2315,7 @@ case $ac_sys_system/$ac_sys_release in AIX*) BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp" - LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp" + LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp" ;; IRIX/5*) LDSHARED="ld -shared";; IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;