summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_bundled.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-12-16 17:53:01 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-12-16 21:53:57 +0100
commit184b50eb2ccc8463b20f166c4df9ca2682718297 (patch)
tree42fdd127bc48d34dc2104326e76fb4e770e9f3b7 /buildtools/wafsamba/samba_bundled.py
parent75b8a24a4274f93c4d67fa7e8c602bb65ef6544b (diff)
downloadsamba-184b50eb2ccc8463b20f166c4df9ca2682718297.tar.gz
samba-184b50eb2ccc8463b20f166c4df9ca2682718297.tar.bz2
samba-184b50eb2ccc8463b20f166c4df9ca2682718297.zip
wafsamba: Fix undefined variable name in error message.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Fri Dec 16 21:53:57 CET 2011 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba/samba_bundled.py')
-rw-r--r--buildtools/wafsamba/samba_bundled.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_bundled.py b/buildtools/wafsamba/samba_bundled.py
index a29b3aa220..a29bfa3a1b 100644
--- a/buildtools/wafsamba/samba_bundled.py
+++ b/buildtools/wafsamba/samba_bundled.py
@@ -111,7 +111,7 @@ def CHECK_BUNDLED_SYSTEM_PKG(conf, libname, minversion='0.0.0',
if onlyif:
if not conf.CHECK_PREREQUISITES(onlyif):
if not conf.LIB_MAY_BE_BUNDLED(libname):
- Logs.error('ERROR: Use of system library %s depends on missing system library %s' % (libname, syslib))
+ Logs.error('ERROR: Use of system library %s depends on missing system library %s' % (libname, onlyif))
sys.exit(1)
conf.env[found] = False
return False