From: Paul Brossier Date: Sun, 15 May 2016 13:32:11 +0000 (+0200) Subject: wscript: exclude more files from dist X-Git-Tag: 0.4.4~300^2~35 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=981e7082f78f84ef20c202d8bb278a51d915cbdb wscript: exclude more files from dist --- diff --git a/wscript b/wscript index db17caab..677af279 100644 --- a/wscript +++ b/wscript @@ -376,11 +376,15 @@ def dist(ctx): ctx.excl = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*' ctx.excl += ' **/build/*' ctx.excl += ' **/python/gen **/python/build **/python/dist' + ctx.excl += ' **/python/ext/config.h' ctx.excl += ' **/**.zip **/**.tar.bz2' ctx.excl += ' **/doc/full/* **/doc/web/*' ctx.excl += ' **/python/*.db' ctx.excl += ' **/python.old/*' + ctx.excl += ' **/python/*/*.old' ctx.excl += ' **/python/tests/sounds' ctx.excl += ' **/**.asc' ctx.excl += ' **/.DS_Store' ctx.excl += ' **/.travis.yml' + ctx.excl += ' **/dist*' + ctx.excl += ' **/appveyor.yml'