diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-11-20 07:56:37 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-11-20 07:56:37 (GMT) |
commit | 395733d46bbc23d2f559eba4e5f75783f9bca6f1 (patch) | |
tree | bdc143f8538156bfd53d4a7d81cbd52b9b7f59d1 /configure | |
parent | 1016b2ff00665203ae01d82520dac497ac89e5e7 (diff) | |
download | cpython-395733d46bbc23d2f559eba4e5f75783f9bca6f1.zip cpython-395733d46bbc23d2f559eba4e5f75783f9bca6f1.tar.gz cpython-395733d46bbc23d2f559eba4e5f75783f9bca6f1.tar.bz2 |
Issue #10656: Fix out-of-tree building on AIX
The ld_so_aix script and python.exp file are created in the build directory.
Patch by Tristan Carel and Michael Haubenwallner.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9226,7 +9226,7 @@ if test -z "$LDSHARED" then case $ac_sys_system/$ac_sys_release in AIX*) - BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp" + BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp" LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp" ;; IRIX/5*) LDSHARED="ld -shared";; |