diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-28 18:50:25 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-05-28 21:59:07 +1000 |
commit | b50c006e203e313a836eb012548749948b515425 (patch) | |
tree | 77e34c11da8b895fd01bf485ca07c38de4adcc2e /source4/wscript | |
parent | e5232bdc69af45f15bc8fd95745276018f5961be (diff) | |
download | samba-b50c006e203e313a836eb012548749948b515425.tar.gz samba-b50c006e203e313a836eb012548749948b515425.tar.bz2 samba-b50c006e203e313a836eb012548749948b515425.zip |
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
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 5 |
1 files changed, 5 insertions, 0 deletions
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' |