From: Paul Brossier Date: Mon, 13 Feb 2017 16:42:39 +0000 (+0100) Subject: wscript: ignore .o and .so X-Git-Tag: 0.5.1~14 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=d00a8d8bf1071044efa8ee417a99f51a671bac34;p=vamp-aubio-plugins.git wscript: ignore .o and .so --- diff --git a/wscript b/wscript index b5efb7d..25441fa 100644 --- a/wscript +++ b/wscript @@ -138,6 +138,7 @@ def build(bld): def dist(ctx): ctx.excl = '**/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*' ctx.excl += ' **/**.tar.bz2' + ctx.excl += ' **/**.o **/**.so' ctx.excl += ' contrib/**' ctx.excl += ' build/**' ctx.excl += ' dist/**'