From 875d1668b63ee797cceb736ff37bb97f73637946 Mon Sep 17 00:00:00 2001 From: Haoyu Bai Date: Sat, 13 Sep 2008 11:38:10 +0000 Subject: [PATCH] fix merge problem: remove USE_VALGRIND because it is already moved to common.mk git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10850 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/python/Makefile.in | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Examples/test-suite/python/Makefile.in b/Examples/test-suite/python/Makefile.in index a3a027453..ec9bb7461 100644 --- a/Examples/test-suite/python/Makefile.in +++ b/Examples/test-suite/python/Makefile.in @@ -9,11 +9,7 @@ else endif LANGUAGE = python -ifneq (,$(USE_VALGRIND)) - PYTHON = valgrind --leak-check=full --suppressions=pyswig.supp $(PYBIN) -else - PYTHON = $(PYBIN) -endif +PYTHON = $(PYBIN) #*_runme.py for Python 2.x, *_runme3.py for Python 3.x PY2SCRIPTSUFFIX = _runme.py