summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-11-20 09:31:41 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-11-20 09:31:41 +0000
commitf75a2ebbac3ab4a93856452d5ad843f7d50daaba (patch)
tree8b80bac29f40de95243ab2fe4f7d345ac2cfc9b3 /configure.ac
parent398bc765750386a25a280c329d61578ad665add9 (diff)
downloadcpython-git-f75a2ebbac3ab4a93856452d5ad843f7d50daaba.tar.gz
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.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f6ca54aa46..127346502c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2124,7 +2124,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*)