From d661759780d70c771c3748095db5a5308451266d Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 9 Apr 2010 21:00:49 +1000 Subject: build: nicer error message on missing file in waf dist --- buildtools/wafsamba/samba_dist.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'buildtools/wafsamba') 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' -- cgit