[waf] exclude more generated files from tarball
authorPaul Brossier <piem@piem.org>
Wed, 21 Nov 2018 20:54:29 +0000 (21:54 +0100)
committerPaul Brossier <piem@piem.org>
Wed, 21 Nov 2018 20:54:29 +0000 (21:54 +0100)
wscript

diff --git a/wscript b/wscript
index f772b92..73f410e 100644 (file)
--- 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*'