diff options
author | Michael Adam <obnox@samba.org> | 2012-02-15 16:07:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-02-16 12:07:50 +0100 |
commit | 56747249ca33433e10f4e5839bdf739055e26155 (patch) | |
tree | bcaf8a055e0ca279f756da92ff06c2e2260029e8 /buildtools | |
parent | 8ca39dfbe18557969e543da5fa9ef0e3c2fd0aa9 (diff) | |
download | samba-56747249ca33433e10f4e5839bdf739055e26155.tar.gz samba-56747249ca33433e10f4e5839bdf739055e26155.tar.bz2 samba-56747249ca33433e10f4e5839bdf739055e26155.zip |
wafsamba: fix blacklist handling in "make dist"
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_dist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_dist.py b/buildtools/wafsamba/samba_dist.py index a11a37cc1b..79cb721b25 100644 --- a/buildtools/wafsamba/samba_dist.py +++ b/buildtools/wafsamba/samba_dist.py @@ -141,7 +141,7 @@ def dist(appname='',version=''): f = f[len(dir)+1:] # Remove files in the blacklist - if f in dist_blacklist: + if f in blacklist: continue blacklisted = False # Remove directories in the blacklist |