File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1421,7 +1421,7 @@ libainstall: all python-config
14211421 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
14221422 $(DESTDIR)$(LIBPL)/makexp_aix; \
14231423 echo "$(LIBPL)/makexp_aix"; \
1424- $(INSTALL_SCRIPT) $(srcdir)/ Modules/ld_so_aix \
1424+ $(INSTALL_SCRIPT) Modules/ld_so_aix \
14251425 $(DESTDIR)$(LIBPL)/ld_so_aix; \
14261426 echo "$(LIBPL)/ld_so_aix"; \
14271427 echo; echo "See Misc/AIX-NOTES for details."; \
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ Arnaud Calmettes
227227Daniel Calvelo
228228Tony Campbell
229229Brett Cannon
230+ Tristan Carel
230231Mike Carlton
231232Pierre Carrier
232233Terry Carroll
@@ -581,6 +582,7 @@ Travis B. Hartwell
581582Larry Hastings
582583Tim Hatch
583584Shane Hathaway
585+ Michael Haubenwallner
584586Janko Hauser
585587Rycharde Hawkes
586588Ben Hayden
Original file line number Diff line number Diff line change 9090Build
9191-----
9292
93+ - Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and
94+ Michael Haubenwallner.
95+
9396- Issue #26359: Rename --with-optimiations to --enable-optimizations.
9497
9598- Issue #28676: Prevent missing 'getentropy' declaration warning on macOS.
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ if test ! -n "$*"; then
7070fi
7171
7272makexp=` dirname $0 ` /makexp_aix
73+ test -x " ${makexp} " || makexp=" @abs_srcdir@/makexp_aix"
7374
7475# Check for existence of compiler.
7576CC=$1 ; shift
Original file line number Diff line number Diff line change @@ -9165,7 +9165,7 @@ if test -z "$LDSHARED"
91659165then
91669166 case $ac_sys_system /$ac_sys_release in
91679167 AIX* )
9168- BLDSHARED=" \$ (srcdir)/ Modules/ld_so_aix \$ (CC) -bI:\$ (srcdir)/ Modules/python.exp"
9168+ BLDSHARED=" Modules/ld_so_aix \$ (CC) -bI:Modules/python.exp"
91699169 LDSHARED=" \$ (LIBPL)/ld_so_aix \$ (CC) -bI:\$ (LIBPL)/python.exp"
91709170 ;;
91719171 IRIX/5* ) LDSHARED=" ld -shared" ;;
Original file line number Diff line number Diff line change @@ -2409,7 +2409,7 @@ if test -z "$LDSHARED"
24092409then
24102410 case $ac_sys_system/$ac_sys_release in
24112411 AIX*)
2412- BLDSHARED="\$(srcdir)/ Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/ Modules/python.exp"
2412+ BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
24132413 LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
24142414 ;;
24152415 IRIX/5*) LDSHARED="ld -shared";;
You can’t perform that action at this time.
0 commit comments