From f77da8c7554d628c4dfc5ebc6afc63cf6a49ccbf Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Fri, 5 Sep 2008 18:42:59 +0100 Subject: [PATCH] Exclude any possible 'nsc' folder from the dist tarball (nsc is ~= 100MB). --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index 970d0a736..dc466ec84 100644 --- a/wscript +++ b/wscript @@ -62,6 +62,7 @@ def dist_hook(): import tarfile shutil.rmtree("doc/html", True) shutil.rmtree("doc/latex", True) + shutil.rmtree("nsc", True) if not os.path.exists("bindings/python/pybindgen"): Params.fatal("Missing pybindgen checkout; run './waf configure --pybindgen-checkout' first.")