Exclude any possible 'nsc' folder from the dist tarball (nsc is ~= 100MB).

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-09-05 18:42:59 +01:00
parent e4bd4773e8
commit f77da8c755

View File

@@ -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.")