[Python-checkins] cpython (2.7): Fix find command in makefile “funny” target

eric.araujo python-checkins at python.org
Fri Aug 19 14:28:14 CEST 2011


http://hg.python.org/cpython/rev/79895ba8e98e
changeset:   71959:79895ba8e98e
branch:      2.7
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Aug 19 08:40:10 2011 +0200
summary:
  Fix find command in makefile “funny” target

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


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1222,7 +1222,7 @@
 
 # Find files with funny names
 funny:
-	find $(DISTDIRS) -type d \
+	find $(SUBDIRS) $(SUBDIRSTOO) -type d \
 		-o -name '*.[chs]' \
 		-o -name '*.py' \
 		-o -name '*.doc' \

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


More information about the Python-checkins mailing list