Commit 25f93036 authored by Guido van Rossum's avatar Guido van Rossum

Moved inclusion of PURIFY in LINKCC to configure

parent 34b35973
...@@ -70,7 +70,7 @@ INSTALL_SHARED= ${INSTALL} -m 555 ...@@ -70,7 +70,7 @@ INSTALL_SHARED= ${INSTALL} -m 555
# === Variables that are customizable by hand or by inclusion in Setup === # === Variables that are customizable by hand or by inclusion in Setup ===
LINKCC= $(PURIFY) @LINKCC@ LINKCC= @LINKCC@
INCLDIR= $(srcdir)/../Include INCLDIR= $(srcdir)/../Include
CONFIGINCLDIR= .. CONFIGINCLDIR= ..
CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS) CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS)
......
#! /bin/sh #! /bin/sh
# From configure.in Revision: 1.60 # From configure.in Revision: 1.61
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.12 # Generated automatically using autoconf version 2.12
...@@ -818,8 +818,8 @@ if test -z "$LINKCC" ...@@ -818,8 +818,8 @@ if test -z "$LINKCC"
then then
case $ac_sys_system in case $ac_sys_system in
AIX*) AIX*)
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";; LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";;
*) LINKCC="\$(CC)";; *) LINKCC="\$(PURIFY) \$(CC)";;
esac esac
fi fi
echo "$ac_t""$LINKCC" 1>&6 echo "$ac_t""$LINKCC" 1>&6
......
...@@ -90,8 +90,8 @@ if test -z "$LINKCC" ...@@ -90,8 +90,8 @@ if test -z "$LINKCC"
then then
case $ac_sys_system in case $ac_sys_system in
AIX*) AIX*)
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";; LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";;
*) LINKCC="\$(CC)";; *) LINKCC="\$(PURIFY) \$(CC)";;
esac esac
fi fi
AC_MSG_RESULT($LINKCC) AC_MSG_RESULT($LINKCC)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment