diff options
author | Guido van Rossum <guido@python.org> | 1997-08-18 14:12:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-18 14:12:12 (GMT) |
commit | 0393e18b18b21e4f113f5d4a507ae01e5074afc2 (patch) | |
tree | 4d59137d2977daabde1b52b07a9257da7e53622b /configure.in | |
parent | 92c90329d191ede028ee544e1b996ce83c4aab18 (diff) | |
download | cpython-0393e18b18b21e4f113f5d4a507ae01e5074afc2.zip cpython-0393e18b18b21e4f113f5d4a507ae01e5074afc2.tar.gz cpython-0393e18b18b21e4f113f5d4a507ae01e5074afc2.tar.bz2 |
Fix LINKCC for AIX
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 ba7c7fd..3cf03cf 100644 --- a/configure.in +++ b/configure.in @@ -90,7 +90,7 @@ if test -z "$LINKCC" then case $ac_sys_system in AIX*) - LINKCC="makexp_aix python.exp \"\" \$(MYLIBS) \$(ADDOBJS); \$(CC)";; + LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";; *) LINKCC="\$(CC)";; esac fi |