[Python-Dev] cpython (3.2): Fix find command in makefile “funny” target (original) (raw)
Georg Brandl g.brandl at gmx.net
Sat Aug 13 08:23:18 CEST 2011
- Previous message: [Python-Dev] Review request issue 12178
- Next message: [Python-Dev] Fwd: Mirroring Python repos to Bitbucket
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 08/12/11 18:03, eric.araujo wrote:
http://hg.python.org/cpython/rev/1b818f3639ef changeset: 71826:1b818f3639ef branch: 3.2 parent: 71823:8032ea4c3619 user: Éric Araujo <merwok at netwok.org> date: Wed Aug 10 02:01:32 2011 +0200 summary: Fix find command in makefile “funny” target
files: Makefile.pre.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1283,7 +1283,7 @@ # Find files with funny names funny: _- find $(DISTDIRS) _ _+ find (SUBDIRS)(SUBDIRS) (SUBDIRS)(SUBDIRSTOO) _ _-name .svn -prune _ _-o -type d _ _-o -name '*.[chs]' _ @@ -1313,7 +1313,7 @@ _-o -name .hgignore _ _-o -name .bzrignore _ _-o -name MANIFEST _ - -o -print + -print
This actually broke the command; it only outputs "MANIFEST" now if present. The previous version is correct; please revert this part.
Georg
- Previous message: [Python-Dev] Review request issue 12178
- Next message: [Python-Dev] Fwd: Mirroring Python repos to Bitbucket
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]