This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author petri.lehtinen
Recipients petri.lehtinen, pitrou, rpointel, vstinner
Date 2011-11-03.09:27:41
SpamBayes Score 0.0005228263
Marked as misclassified No
Message-id <20111103092731.GI4458@p16>
In-reply-to <1320312289.07.0.811525535106.issue13326@psf.upfronthosting.co.za>
Content
> +	-find $(srcdir) -name '__pycache__' -print0 | xargs -0r rm -rf

I'd still do it like this for portability's sake:

+	-find $(srcdir) -depth -name '__pycache__' -exec rm -rf {} ';'
History
Date User Action Args
2011-11-03 09:27:42petri.lehtinensetrecipients: + petri.lehtinen, pitrou, vstinner, rpointel
2011-11-03 09:27:41petri.lehtinenlinkissue13326 messages
2011-11-03 09:27:41petri.lehtinencreate