diff options
author | Georg Brandl <georg@python.org> | 2011-02-25 10:20:45 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-25 10:20:45 +0000 |
commit | 6baf117d88f03e11c74d576c75268604377d2715 (patch) | |
tree | 0f220dd669f8297945b84f43fe141fd5f5e0e7f3 /configure.in | |
parent | 2774310c27c6a8f4eb0d7d35e977767fa70d144f (diff) | |
download | cpython-git-6baf117d88f03e11c74d576c75268604377d2715.tar.gz |
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.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5c35af2d34..85ce6fa900 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";; |