]> granicus.if.org Git - python/commitdiff
Moved inclusion of PURIFY in LINKCC to configure
authorGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 16:00:04 +0000 (16:00 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 16:00:04 +0000 (16:00 +0000)
Modules/Makefile.pre.in
configure
configure.in

index b4a4a433e4f4a7d953795944813b8ae9066b920a..6c5ddb1909303a537640a06e8b1e0b30a6df3c1a 100644 (file)
@@ -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)
index 2d430fecb45a727c320abc3020343737b058938c..ca0511a1b6dba8e6093ee534709f198a7bccd7d7 100755 (executable)
--- 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
index 3cf03cf411fe71cb8d69bec1642b21762dbde973..10545dcfc65ed9b54952bc2b454fc9f22db4ebd5 100644 (file)
@@ -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)