diff options
author | Guido van Rossum <guido@python.org> | 1997-08-18 16:00:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-18 16:00:04 (GMT) |
commit | 25f93036bbaba0371bb64acfd91a8a515b77f6a2 (patch) | |
tree | 323f31e651f50d335618a1a32199a057f2f195e2 /configure | |
parent | 34b359732cf1346c7bc3eeceff2ffa4a2f8981e0 (diff) | |
download | cpython-25f93036bbaba0371bb64acfd91a8a515b77f6a2.zip cpython-25f93036bbaba0371bb64acfd91a8a515b77f6a2.tar.gz cpython-25f93036bbaba0371bb64acfd91a8a515b77f6a2.tar.bz2 |
Moved inclusion of PURIFY in LINKCC to configure
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |