summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-28 15:59:38 (GMT)
committerGuido van Rossum <guido@python.org>2001-09-28 15:59:38 (GMT)
commitce608b02a69384d6c99466c8855ad62bbe097acf (patch)
treeed1738e7eee60d4fc1320c40edfff590a01d60ba /configure.in
parent86fbaf8e6748f626d862b7d598fbc4e5b6a16be7 (diff)
downloadcpython-ce608b02a69384d6c99466c8855ad62bbe097acf.zip
cpython-ce608b02a69384d6c99466c8855ad62bbe097acf.tar.gz
cpython-ce608b02a69384d6c99466c8855ad62bbe097acf.tar.bz2
Fix SF bug 419062: building pbs on AIX 4.3.2
Apply patch from "china@thewrittenword.com" to put the correct location for ld_so_aix in BLDSHARED.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 32147bf..31412a1 100644
--- a/configure.in
+++ b/configure.in
@@ -677,11 +677,11 @@ then
case $ac_sys_system/$ac_sys_release in
AIX*)
BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
- LDSHARED="\$(BINLIBDEST)/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/python.exp"
+ LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
;;
BeOS*)
BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
- LDSHARED="\$(BINLIBDEST)/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
+ LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
;;
IRIX/5*) LDSHARED="ld -shared";;
IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;