summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-25 10:20:45 (GMT)
committerGeorg Brandl <georg@python.org>2011-02-25 10:20:45 (GMT)
commit6baf117d88f03e11c74d576c75268604377d2715 (patch)
tree0f220dd669f8297945b84f43fe141fd5f5e0e7f3 /configure.in
parent2774310c27c6a8f4eb0d7d35e977767fa70d144f (diff)
downloadcpython-6baf117d88f03e11c74d576c75268604377d2715.zip
cpython-6baf117d88f03e11c74d576c75268604377d2715.tar.gz
cpython-6baf117d88f03e11c74d576c75268604377d2715.tar.bz2
Merged revisions 88426 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r88426 | georg.brandl | 2011-02-15 16:44:51 +0100 (Di, 15 Feb 2011) | 1 line #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, review by Antoine Pitrou. ........
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5c35af2..85ce6fa 100644
--- a/configure.in
+++ b/configure.in
@@ -1730,7 +1730,7 @@ if test -z "$LDSHARED"
then
case $ac_sys_system/$ac_sys_release in
AIX*)
- BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp -L\$(srcdir)"
+ BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
;;
IRIX/5*) LDSHARED="ld -shared";;