diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-10 00:01:32 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-10 00:01:32 (GMT) |
commit | 1c608e38474d7b0aa74f023d877c38e37a8cae0e (patch) | |
tree | cb79329d89fda918a19a197c07181dfa228c4846 /Makefile.pre.in | |
parent | ef1e94a848533f2e7dbb2ed7a8b2de50e97e4b7f (diff) | |
download | cpython-1c608e38474d7b0aa74f023d877c38e37a8cae0e.zip cpython-1c608e38474d7b0aa74f023d877c38e37a8cae0e.tar.gz cpython-1c608e38474d7b0aa74f023d877c38e37a8cae0e.tar.bz2 |
Fix find command in makefile “funny” target
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index dfa7219..1108c75 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1283,7 +1283,7 @@ smelly: all # Find files with funny names funny: - find $(DISTDIRS) \ + find $(SUBDIRS) $(SUBDIRSTOO) \ -name .svn -prune \ -o -type d \ -o -name '*.[chs]' \ @@ -1313,7 +1313,7 @@ funny: -o -name .hgignore \ -o -name .bzrignore \ -o -name MANIFEST \ - -o -print + -print # Perform some verification checks on any modified files. patchcheck: |