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 /Modules/ld_so_aix.in | |
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 'Modules/ld_so_aix.in')
-rw-r--r-- | Modules/ld_so_aix.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/ld_so_aix.in b/Modules/ld_so_aix.in index add6b3e..f4eab40 100644 --- a/Modules/ld_so_aix.in +++ b/Modules/ld_so_aix.in @@ -70,6 +70,7 @@ if test ! -n "$*"; then fi makexp=`dirname $0`/makexp_aix +test -x "${makexp}" || makexp="@abs_srcdir@/makexp_aix" # Check for existence of compiler. CC=$1; shift |