]> granicus.if.org Git - python/commitdiff
Issue #25825: Fix references to $(LIBPL) installation path on AIX
authorMartin Panter <vadmium+py@gmail.com>
Sat, 27 Aug 2016 04:00:19 +0000 (04:00 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 27 Aug 2016 04:00:19 +0000 (04:00 +0000)
In Subversion r86731, the path was changed from $(BINLIBDEST)/config to
$(LIBDEST)/config-$(LDVERSION).

Misc/NEWS
configure
configure.ac

index 290cf867fa4b29568f89b27b6e3fa299929a5948..e85587ef20d1b4d1808ab9a81dd9688f4dc3487e 100644 (file)
--- 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.
index d45dd6546f1173afb641123c15fc3b1da2e77ab8..f5ff3cea448ba6e31debe4a472eecbbd83d3c0b1 100755 (executable)
--- a/configure
+++ b/configure
@@ -9040,7 +9040,7 @@ then
        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";;
index 11acb0ac7820ceb798646074dd17f30c4c041e0d..2ccb4e2df6911d2324139190e207298881a24f68 100644 (file)
@@ -2284,7 +2284,7 @@ then
        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";;