From: Guido van Rossum Date: Mon, 18 Aug 1997 16:00:04 +0000 (+0000) Subject: Moved inclusion of PURIFY in LINKCC to configure X-Git-Tag: v1.5a4~374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25f93036bbaba0371bb64acfd91a8a515b77f6a2;p=python Moved inclusion of PURIFY in LINKCC to configure --- diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index b4a4a433e4..6c5ddb1909 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -70,7 +70,7 @@ INSTALL_SHARED= ${INSTALL} -m 555 # === Variables that are customizable by hand or by inclusion in Setup === -LINKCC= $(PURIFY) @LINKCC@ +LINKCC= @LINKCC@ INCLDIR= $(srcdir)/../Include CONFIGINCLDIR= .. CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS) diff --git a/configure b/configure index 2d430fecb4..ca0511a1b6 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.60 +# From configure.in Revision: 1.61 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.12 @@ -818,8 +818,8 @@ if test -z "$LINKCC" then case $ac_sys_system in AIX*) - LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";; - *) LINKCC="\$(CC)";; + LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";; + *) LINKCC="\$(PURIFY) \$(CC)";; esac fi echo "$ac_t""$LINKCC" 1>&6 diff --git a/configure.in b/configure.in index 3cf03cf411..10545dcfc6 100644 --- a/configure.in +++ b/configure.in @@ -90,8 +90,8 @@ if test -z "$LINKCC" then case $ac_sys_system in AIX*) - LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";; - *) LINKCC="\$(CC)";; + LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";; + *) LINKCC="\$(PURIFY) \$(CC)";; esac fi AC_MSG_RESULT($LINKCC)