From: Guido van Rossum Date: Mon, 18 Aug 1997 14:12:12 +0000 (+0000) Subject: Fix LINKCC for AIX X-Git-Tag: v1.5a4~384 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0393e18b18b21e4f113f5d4a507ae01e5074afc2;p=python Fix LINKCC for AIX --- diff --git a/configure b/configure index 1cd3f17678..2d430fecb4 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.59 +# From configure.in Revision: 1.60 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.12 @@ -818,7 +818,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 diff --git a/configure.in b/configure.in index ba7c7fd188..3cf03cf411 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