summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-11-20 09:31:41 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-11-20 09:31:41 (GMT)
commitf75a2ebbac3ab4a93856452d5ad843f7d50daaba (patch)
tree8b80bac29f40de95243ab2fe4f7d345ac2cfc9b3 /configure
parent398bc765750386a25a280c329d61578ad665add9 (diff)
downloadcpython-f75a2ebbac3ab4a93856452d5ad843f7d50daaba.zip
cpython-f75a2ebbac3ab4a93856452d5ad843f7d50daaba.tar.gz
cpython-f75a2ebbac3ab4a93856452d5ad843f7d50daaba.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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4e4f9e3..c01dfe0 100755
--- a/configure
+++ b/configure
@@ -8551,7 +8551,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="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
;;
BeOS*)