diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-12-01 11:28:26 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-12-01 16:09:57 +1100 |
commit | bbf953464e8d3d876373b7ac2f1bfb80530352a6 (patch) | |
tree | 800ec806d8130d2e38aaca9920c9855872fc0d10 /buildtools/wafsamba | |
parent | 8428311ce5c0fab9c5bbb3fbcbecd37fca472d93 (diff) | |
download | samba-bbf953464e8d3d876373b7ac2f1bfb80530352a6.tar.gz samba-bbf953464e8d3d876373b7ac2f1bfb80530352a6.tar.bz2 samba-bbf953464e8d3d876373b7ac2f1bfb80530352a6.zip |
waf: use Logs.warn() instead of print() in the symbol check code
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r-- | buildtools/wafsamba/symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/symbols.py b/buildtools/wafsamba/symbols.py index e90eb8832f..77920e480d 100644 --- a/buildtools/wafsamba/symbols.py +++ b/buildtools/wafsamba/symbols.py @@ -146,7 +146,7 @@ def build_syslib_sets(bld, tgt_list): for lib in syslibs: path = find_syslib_path(bld, lib, syslibs[lib]) if path is None: - print("Unable to find syslib path for %s used by %s" % lib) + Logs.warn("Unable to find syslib path for %s used by %s" % (lib, syslibs[lib])) if path is not None: syslib_paths.append(path) objmap[path] = lib.lower() |