diff options
author | Guido van Rossum <guido@python.org> | 1997-08-29 18:44:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-29 18:44:06 (GMT) |
commit | 45140f97a66156d14105ceca03ee106303523d22 (patch) | |
tree | 51f3925c21e742cfb8eb2f40ddb75982c17544a3 /configure.in | |
parent | cf0be04b2c07436a155792018ef1376b35f3456f (diff) | |
download | cpython-45140f97a66156d14105ceca03ee106303523d22.zip cpython-45140f97a66156d14105ceca03ee106303523d22.tar.gz cpython-45140f97a66156d14105ceca03ee106303523d22.tar.bz2 |
Subtle changes to the AIX shared library things to make them work
when building outside the source directory. Courtesy Donn Cave.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 7acb9d5..efcb8b8 100644 --- a/configure.in +++ b/configure.in @@ -97,7 +97,7 @@ if test -z "$LINKCC" then case $ac_sys_system in AIX*) - LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";; + LINKCC="\$(srcdir)/makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";; *) LINKCC="\$(PURIFY) \$(CC)";; esac fi @@ -219,7 +219,7 @@ AC_MSG_CHECKING(LDSHARED) if test -z "$LDSHARED" then case $ac_sys_system/$ac_sys_release in - AIX*) LDSHARED="ld_so_aix \$(CC)";; + AIX*) LDSHARED="\$(srcdir)/ld_so_aix \$(CC)";; IRIX/5*) LDSHARED="ld -shared";; IRIX*/6*) LDSHARED="ld $SGI_ABI -shared -all"; OPT="$OPT $SGI_ABI";; SunOS/4*) LDSHARED="ld";; |