From 981e7082f78f84ef20c202d8bb278a51d915cbdb Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 15 May 2016 15:32:11 +0200 Subject: [PATCH 1/1] wscript: exclude more files from dist --- wscript | 4 ++++ 1 file changed, 4 insertions(+) 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' -- 2.11.0