summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-02 02:06:20 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-02 02:06:20 (GMT)
commitd0924f45853c4157718859301800dc4a37aead33 (patch)
treedd737a4ac72f8c277a9f4048b399a551573ff6da /Modules
parentc46d22e52e7c880e6ab2d743c27235322ad95317 (diff)
downloadcpython-d0924f45853c4157718859301800dc4a37aead33.zip
cpython-d0924f45853c4157718859301800dc4a37aead33.tar.gz
cpython-d0924f45853c4157718859301800dc4a37aead33.tar.bz2
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.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in
index 21f22b9..0abe6ef 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)