[Python-checkins] r66869 - python/branches/release26-maint/Makefile.pre.in

matthias.klose python-checkins at python.org
Fri Oct 10 09:25:11 CEST 2008


Author: matthias.klose
Date: Fri Oct 10 09:25:11 2008
New Revision: 66869

Log:
- Makefile.pre.in(PROFILE_TASK): search files in srcdir


Modified:
   python/branches/release26-maint/Makefile.pre.in

Modified: python/branches/release26-maint/Makefile.pre.in
==============================================================================
--- python/branches/release26-maint/Makefile.pre.in	(original)
+++ python/branches/release26-maint/Makefile.pre.in	Fri Oct 10 09:25:11 2008
@@ -177,8 +177,8 @@
 BUILDPYTHON=	python$(BUILDEXE)
 
 # The task to run while instrument when building the profile-opt target
-PROFILE_TASK=	Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
-#PROFILE_TASK=	Lib/test/regrtest.py
+PROFILE_TASK=	$(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
+#PROFILE_TASK=	$(srcdir)/Lib/test/regrtest.py
 
 # === Definitions added by makesetup ===
 


More information about the Python-checkins mailing list