diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-12 13:27:40 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-12 19:23:59 +0200 |
commit | 24ec465790a062db7720914ae9b2c10eaa36e070 (patch) | |
tree | a9332951097110b78ad9145d4de0de213954a580 | |
parent | cda2db5edfd5e0ca58083086594e58dfca7a40e7 (diff) | |
download | samba-24ec465790a062db7720914ae9b2c10eaa36e070.tar.gz samba-24ec465790a062db7720914ae9b2c10eaa36e070.tar.bz2 samba-24ec465790a062db7720914ae9b2c10eaa36e070.zip |
wafsamba: Warn about circular dependencies between libraries.
-rw-r--r-- | buildtools/wafsamba/samba_deps.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |