]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add a simple way to enable purify; now you can set the Make variable
authorGuido van Rossum <guido@python.org>
Sat, 2 Aug 1997 02:06:20 +0000 (02:06 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 2 Aug 1997 02:06:20 +0000 (02:06 +0000)
PURIFY (e.g. in the Setup file or on the make command line) to point
to the purify command, to run purify.

Modules/Makefile.pre.in

index 21f22b9c9e92df5d2d441a2ad4858af2d4cd38b9..0abe6ef9e6bfa0ec361d9a667494822c301404ec 100644 (file)
@@ -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)