diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-04-08 03:56:24 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-04-08 05:31:15 +0200 |
commit | 4a3da81edb708c4652652226559989e764577634 (patch) | |
tree | 48b7f994317d629668db0d0080c3e20d08d63efb /buildtools | |
parent | 5138b1f7fb597f3c16260f16043dff7ff526016f (diff) | |
download | samba-4a3da81edb708c4652652226559989e764577634.tar.gz |
wafsamba: Return missing libs rather than last syslib.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Apr 8 05:31:15 CEST 2012 on sn-devel-104
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_bundled.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_bundled.py b/buildtools/wafsamba/samba_bundled.py index e13da9f612..7fc0fb97ef 100644 --- a/buildtools/wafsamba/samba_bundled.py +++ b/buildtools/wafsamba/samba_bundled.py @@ -89,7 +89,7 @@ def CHECK_PREREQUISITES(conf, prereqs): f = 'FOUND_SYSTEMLIB_%s' % syslib if not f in conf.env: missing.append(syslib) - return syslib + return missing @runonce |