From: Paul Brossier Date: Thu, 17 Oct 2013 11:03:58 +0000 (+0200) Subject: wscript: also exclude zips X-Git-Tag: 0.4.0-beta1~110^2~7 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=22dd9dc9d79471dd3a67674b95220e31270cd56f;p=aubio.git wscript: also exclude zips --- diff --git a/wscript b/wscript index 95a7c5c1..989b0703 100644 --- a/wscript +++ b/wscript @@ -250,7 +250,8 @@ def shutdown(bld): def dist(ctx): ctx.excl = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*' ctx.excl += ' **/build/*' - ctx.excl += ' **/python/gen **/python/build **/python/dist **/**.tar.bz2' + ctx.excl += ' **/python/gen **/python/build **/python/dist' + ctx.excl += ' **/**.zip **/**.tar.bz2' ctx.excl += ' **/doc/full/*' ctx.excl += ' **/python/*.db' ctx.excl += ' **/python.old/*'