From: Paul Brossier Date: Wed, 21 Nov 2018 20:54:29 +0000 (+0100) Subject: [waf] exclude more generated files from tarball X-Git-Tag: 0.4.8~8 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=429ff6c2899a10da995d45487beab85a77b8fb50;ds=sidebyside [waf] exclude more generated files from tarball --- diff --git a/wscript b/wscript index f772b927..73f410ec 100644 --- a/wscript +++ b/wscript @@ -618,6 +618,7 @@ def dist(ctx): ctx.excl += ' **/python/*.db' ctx.excl += ' **/python.old/*' ctx.excl += ' **/python/*/*.old' + ctx.excl += ' **/python/lib/aubio/*.so' ctx.excl += ' **/python/tests/sounds' ctx.excl += ' **/**.asc' ctx.excl += ' **/dist*' @@ -627,4 +628,4 @@ def dist(ctx): ctx.excl += ' **/.appveyor.yml' ctx.excl += ' **/.circleci/*' ctx.excl += ' **/azure-pipelines.yml' - ctx.excl += ' **/.coveragerc' + ctx.excl += ' **/.coverage*'