[Python-checkins] cpython (3.4): Issue #21383: Allow "make touch" to work when building outside of the

ned.deily python-checkins at python.org
Mon May 12 06:47:54 CEST 2014


http://hg.python.org/cpython/rev/bc160f985b7b
changeset:   90660:bc160f985b7b
branch:      3.4
parent:      90657:aea4f427902f
user:        Ned Deily <nad at acm.org>
date:        Sun May 11 21:45:13 2014 -0700
summary:
  Issue #21383: Allow "make touch" to work when building outside of the
source directory.

files:
  Makefile.pre.in |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1487,6 +1487,7 @@
 
 # Touch generated files
 touch:
+	cd $(srcdir); \
 	hg --config extensions.touch=Tools/hg/hgtouch.py touch -v
 
 # Sanitation targets -- clean leaves libraries, executables and tags

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list