diff options
author | Ned Deily <nad@acm.org> | 2014-05-12 04:45:13 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-05-12 04:45:13 (GMT) |
commit | a869fd3dc0117d2f02fb7e4146b6c446a68eaeb4 (patch) | |
tree | 22954f49c69cff8bdfc7b801d0cf49375a5e6ffe | |
parent | 96089fb40da98aea87a8f9a0c7b6bb2757ab92d3 (diff) | |
download | cpython-a869fd3dc0117d2f02fb7e4146b6c446a68eaeb4.zip cpython-a869fd3dc0117d2f02fb7e4146b6c446a68eaeb4.tar.gz cpython-a869fd3dc0117d2f02fb7e4146b6c446a68eaeb4.tar.bz2 |
Issue #21383: Allow "make touch" to work when building outside of the
source directory.
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 5af61e3..f36c11d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1487,6 +1487,7 @@ TAGS:: # Touch generated files touch: + cd $(srcdir); \ hg --config extensions.touch=Tools/hg/hgtouch.py touch -v # Sanitation targets -- clean leaves libraries, executables and tags |