summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_deps.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-27 10:37:58 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-26 23:40:04 +0000
commitafe40c7eccec25b8361fbcbc7f6af43c6846f410 (patch)
treefac91dfc9cc3d8ca6cbc5e37439a2792290f4203 /buildtools/wafsamba/samba_deps.py
parent5bb7723803960ee6ec84197fe0ec3801ea7507eb (diff)
downloadsamba-afe40c7eccec25b8361fbcbc7f6af43c6846f410.tar.gz
samba-afe40c7eccec25b8361fbcbc7f6af43c6846f410.tar.bz2
samba-afe40c7eccec25b8361fbcbc7f6af43c6846f410.zip
waf: quote subsystem names to make them clearer
Diffstat (limited to 'buildtools/wafsamba/samba_deps.py')
-rw-r--r--buildtools/wafsamba/samba_deps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py
index a89c3e8ca3..f54f3b2c68 100644
--- a/buildtools/wafsamba/samba_deps.py
+++ b/buildtools/wafsamba/samba_deps.py
@@ -435,7 +435,7 @@ def build_direct_deps(bld, tgt_list):
d = EXPAND_ALIAS(bld, d)
if d == t.sname: continue
if not d in targets:
- Logs.error("Unknown dependency %s in %s" % (d, t.sname))
+ Logs.error("Unknown dependency '%s' in '%s'" % (d, t.sname))
sys.exit(1)
if targets[d] in [ 'EMPTY', 'DISABLED' ]:
continue