diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-05 15:26:05 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-05 16:13:06 +0100 |
commit | 496ef92b09180cb13ddf0b29fd90abdf72c7a423 (patch) | |
tree | 53766487b8bab64060d9ade44f3fef371259e57f /buildtools | |
parent | 2ec657b10eb24ec29fd7724eabdb8ee51ed132e5 (diff) | |
download | samba-496ef92b09180cb13ddf0b29fd90abdf72c7a423.tar.gz samba-496ef92b09180cb13ddf0b29fd90abdf72c7a423.tar.bz2 samba-496ef92b09180cb13ddf0b29fd90abdf72c7a423.zip |
wafsamba: Only include versioned files when building tarball from bzr.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Dec 5 16:13:06 CET 2010 on sn-devel-104
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 320a8584bb..1b27806225 100644 --- a/buildtools/wafsamba/samba_dist.py +++ b/buildtools/wafsamba/samba_dist.py @@ -86,7 +86,7 @@ def vcs_dir_contents(path): env["GIT_DIR"] = os.path.join(repo, ".git") break elif os.path.isdir(os.path.join(repo, ".bzr")): - ls_files_cmd = [ 'bzr', 'ls', '--recursive', + ls_files_cmd = [ 'bzr', 'ls', '--recursive', '--versioned', os.path.relpath(path, repo)] cwd = repo env = None |