From: Guido van Rossum Date: Sat, 2 Aug 1997 02:06:20 +0000 (+0000) Subject: Add a simple way to enable purify; now you can set the Make variable X-Git-Tag: v1.5a3~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0924f45853c4157718859301800dc4a37aead33;p=thirdparty%2FPython%2Fcpython.git Add a simple way to enable purify; now you can set the Make variable PURIFY (e.g. in the Setup file or on the make command line) to point to the purify command, to run purify. --- diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 21f22b9c9e92..0abe6ef9e6bf 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= $(CC) +LINKCC= $(PURIFY) $(CC) INCLDIR= $(srcdir)/../Include CONFIGINCLDIR= .. CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS)