File tree Expand file tree Collapse file tree 6 files changed +9
-3
lines changed Expand file tree Collapse file tree 6 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1232,7 +1232,7 @@ libainstall: all python-config
1232
1232
$(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
1233
1233
$(DESTDIR)$(LIBPL)/makexp_aix; \
1234
1234
echo "$(LIBPL)/makexp_aix"; \
1235
- $(INSTALL_SCRIPT) $(srcdir)/ Modules/ld_so_aix \
1235
+ $(INSTALL_SCRIPT) Modules/ld_so_aix \
1236
1236
$(DESTDIR)$(LIBPL)/ld_so_aix; \
1237
1237
echo "$(LIBPL)/ld_so_aix"; \
1238
1238
echo; echo "See Misc/AIX-NOTES for details."; \
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ Arnaud Calmettes
209
209
Daniel Calvelo
210
210
Tony Campbell
211
211
Brett Cannon
212
+ Tristan Carel
212
213
Mike Carlton
213
214
Pierre Carrier
214
215
Terry Carroll
@@ -541,6 +542,7 @@ Travis B. Hartwell
541
542
Larry Hastings
542
543
Tim Hatch
543
544
Shane Hathaway
545
+ Michael Haubenwallner
544
546
Janko Hauser
545
547
Rycharde Hawkes
546
548
Ben Hayden
Original file line number Diff line number Diff line change @@ -273,6 +273,9 @@ Tests
273
273
Build
274
274
-----
275
275
276
+ - Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and
277
+ Michael Haubenwallner.
278
+
276
279
- Issue #26359: Rename --with-optimiations to --enable-optimizations.
277
280
278
281
- Issue #28248: Update Windows build and OS X installers to use OpenSSL 1.0.2j.
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ if test ! -n "$*"; then
70
70
fi
71
71
72
72
makexp=` dirname $0 ` /makexp_aix
73
+ test -x " ${makexp} " || makexp=" @abs_srcdir@/makexp_aix"
73
74
74
75
# Check for existence of compiler.
75
76
CC=$1 ; shift
Original file line number Diff line number Diff line change @@ -8551,7 +8551,7 @@ if test -z "$LDSHARED"
8551
8551
then
8552
8552
case $ac_sys_system /$ac_sys_release in
8553
8553
AIX* )
8554
- BLDSHARED=" \$ (srcdir)/ Modules/ld_so_aix \$ (CC) -bI:\$ (srcdir)/ Modules/python.exp"
8554
+ BLDSHARED=" Modules/ld_so_aix \$ (CC) -bI:Modules/python.exp"
8555
8555
LDSHARED=" \$ (BINLIBDEST)/config/ld_so_aix \$ (CC) -bI:\$ (BINLIBDEST)/config/python.exp"
8556
8556
;;
8557
8557
BeOS* )
Original file line number Diff line number Diff line change @@ -2124,7 +2124,7 @@ if test -z "$LDSHARED"
2124
2124
then
2125
2125
case $ac_sys_system/$ac_sys_release in
2126
2126
AIX*)
2127
- BLDSHARED="\$(srcdir)/ Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/ Modules/python.exp"
2127
+ BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
2128
2128
LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
2129
2129
;;
2130
2130
BeOS*)
You can’t perform that action at this time.
0 commit comments