diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-28 18:54:57 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-05-28 21:59:07 +1000 |
commit | 708d6fc5b002fb781983dd6ca4bda6e59a3a6411 (patch) | |
tree | 9fe7bcf3ebac409e5bb1b5841a3365cb31a5dff2 /source4/wscript | |
parent | b50c006e203e313a836eb012548749948b515425 (diff) | |
download | samba-708d6fc5b002fb781983dd6ca4bda6e59a3a6411.tar.gz samba-708d6fc5b002fb781983dd6ca4bda6e59a3a6411.tar.bz2 samba-708d6fc5b002fb781983dd6ca4bda6e59a3a6411.zip |
s4:waf Exclude the autotools based build environment from a Samba4 release
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/wscript b/source4/wscript index 3645ad4788..5d6392cefe 100644 --- a/source4/wscript +++ b/source4/wscript @@ -18,8 +18,14 @@ 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. + +#This list includes files that would confuse the recipient of a +#samba-4.0.0 branded tarball (until the merge is complete) and the +#core elements of the autotools build system (which is known to +#produce buggy binaries). samba_dist.DIST_BLACKLIST('README Manifest Read-Manifest-Now Roadmap source3/ ' + - 'packaging/ docs-xml/ examples/ swat/ WHATSNEW.txt MAINTAINERS') + 'packaging/ docs-xml/ examples/ swat/ WHATSNEW.txt MAINTAINERS ' + + 'source4/autogen-autotools.sh source4/Makefile.in source4/configure.ac') # install in /usr/local/samba by default Options.default_prefix = '/usr/local/samba' |