diff options
Diffstat (limited to 'buildtools/wafsamba/samba_dist.py')
-rw-r--r-- | buildtools/wafsamba/samba_dist.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/buildtools/wafsamba/samba_dist.py b/buildtools/wafsamba/samba_dist.py index b4a6cbb240..0fa8dbee03 100644 --- a/buildtools/wafsamba/samba_dist.py +++ b/buildtools/wafsamba/samba_dist.py @@ -1,14 +1,18 @@ # customised version of 'waf dist' for Samba tools # uses git ls-files to get file lists -import Utils, os, sys, tarfile, stat, Scripting +import Utils, os, sys, tarfile, stat, Scripting, Logs from samba_utils import * dist_dirs = None def add_tarfile(tar, fname, abspath): '''add a file to the tarball''' - tinfo = tar.gettarinfo(name=abspath, arcname=fname) + try: + tinfo = tar.gettarinfo(name=abspath, arcname=fname) + except OSError: + Logs.error('Unable to find file %s - missing from git checkout?' % abspath) + sys.exit(1) tinfo.uid = 0 tinfo.gid = 0 tinfo.uname = 'root' |