diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-12-16 17:53:01 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-12-16 21:53:57 +0100 |
commit | 184b50eb2ccc8463b20f166c4df9ca2682718297 (patch) | |
tree | 42fdd127bc48d34dc2104326e76fb4e770e9f3b7 | |
parent | 75b8a24a4274f93c4d67fa7e8c602bb65ef6544b (diff) | |
download | samba-184b50eb2ccc8463b20f166c4df9ca2682718297.tar.gz samba-184b50eb2ccc8463b20f166c4df9ca2682718297.tar.xz 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
-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 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 |