File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1418,7 +1418,7 @@ libainstall: all python-config
14181418 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
14191419 $(DESTDIR)$(LIBPL)/makexp_aix; \
14201420 echo "$(LIBPL)/makexp_aix"; \
1421- $(INSTALL_SCRIPT) $(srcdir)/ Modules/ld_so_aix \
1421+ $(INSTALL_SCRIPT) Modules/ld_so_aix \
14221422 $(DESTDIR)$(LIBPL)/ld_so_aix; \
14231423 echo "$(LIBPL)/ld_so_aix"; \
14241424 echo; echo "See Misc/AIX-NOTES for details."; \
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ Arnaud Calmettes
225225Daniel Calvelo
226226Tony Campbell
227227Brett Cannon
228+ Tristan Carel
228229Mike Carlton
229230Pierre Carrier
230231Terry Carroll
@@ -573,6 +574,7 @@ Travis B. Hartwell
573574Larry Hastings
574575Tim Hatch
575576Shane Hathaway
577+ Michael Haubenwallner
576578Janko Hauser
577579Rycharde Hawkes
578580Ben Hayden
Original file line number Diff line number Diff line change @@ -555,6 +555,9 @@ Windows
555555Build
556556-----
557557
558+ - Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and
559+ Michael Haubenwallner.
560+
558561- Issue #26359: Rename --with-optimiations to --enable-optimizations.
559562
560563- Issue #28444: Fix missing extensions modules when cross compiling.
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 @@ -9226,7 +9226,7 @@ if test -z "$LDSHARED"
92269226then
92279227 case $ac_sys_system /$ac_sys_release in
92289228 AIX* )
9229- BLDSHARED=" \$ (srcdir)/ Modules/ld_so_aix \$ (CC) -bI:\$ (srcdir)/ Modules/python.exp"
9229+ BLDSHARED=" Modules/ld_so_aix \$ (CC) -bI:Modules/python.exp"
92309230 LDSHARED=" \$ (LIBPL)/ld_so_aix \$ (CC) -bI:\$ (LIBPL)/python.exp"
92319231 ;;
92329232 IRIX/5* ) LDSHARED=" ld -shared" ;;
Original file line number Diff line number Diff line change @@ -2358,7 +2358,7 @@ if test -z "$LDSHARED"
23582358then
23592359 case $ac_sys_system/$ac_sys_release in
23602360 AIX*)
2361- BLDSHARED="\$(srcdir)/ Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/ Modules/python.exp"
2361+ BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
23622362 LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
23632363 ;;
23642364 IRIX/5*) LDSHARED="ld -shared";;
You can’t perform that action at this time.
0 commit comments