From b50c006e203e313a836eb012548749948b515425 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 28 May 2010 18:50:25 +1000 Subject: waf Add DIST_BLACKLIST to list files that we cannot include in a release This currently includes the source3 directory for Samba4 releases (per past practice in mkrelease.sh), but also could include things like DFSG-unfree RFC files in the future. Andrew Barltett --- source4/wscript | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/wscript') diff --git a/source4/wscript b/source4/wscript index f018094f1c..3645ad4788 100644 --- a/source4/wscript +++ b/source4/wscript @@ -15,6 +15,11 @@ VERSION=version.STRING samba_dist.DIST_DIRS('.') +#This is a list of files that we don't want in the package, for +#whatever reason. Directories should be listed with a trailing / to +#avoid over-exclusion. +samba_dist.DIST_BLACKLIST('README Manifest Read-Manifest-Now Roadmap source3/ ' + + 'packaging/ docs-xml/ examples/ swat/ WHATSNEW.txt MAINTAINERS') # install in /usr/local/samba by default Options.default_prefix = '/usr/local/samba' -- cgit