From d00a8d8bf1071044efa8ee417a99f51a671bac34 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 13 Feb 2017 17:42:39 +0100 Subject: [PATCH] wscript: ignore .o and .so --- wscript | 1 + 1 file changed, 1 insertion(+) 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/**' -- 2.11.0