From 24ec465790a062db7720914ae9b2c10eaa36e070 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 12 Oct 2010 13:27:40 +0200 Subject: wafsamba: Warn about circular dependencies between libraries. --- buildtools/wafsamba/samba_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools/wafsamba/samba_deps.py') diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py index 94b7484def..8bd8ad31ce 100644 --- a/buildtools/wafsamba/samba_deps.py +++ b/buildtools/wafsamba/samba_deps.py @@ -709,7 +709,7 @@ def calculate_final_deps(bld, tgt_list, loops): # we could break this in either direction. If one of the libraries # has a version number, and will this be distributed publicly, then # we should make it the lower level library in the DAG - debug('deps: removing library loop %s from %s', t.sname, t2.sname) + Logs.warn('deps: removing library loop %s from %s' % (t.sname, t2.sname)) dependency_loop(loops, t, t2.sname) t2.final_libs.remove(t.sname) -- cgit