From 184b50eb2ccc8463b20f166c4df9ca2682718297 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 16 Dec 2011 17:53:01 +0100 Subject: wafsamba: Fix undefined variable name in error message. Autobuild-User: Jelmer Vernooij Autobuild-Date: Fri Dec 16 21:53:57 CET 2011 on sn-devel-104 --- buildtools/wafsamba/samba_bundled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools/wafsamba/samba_bundled.py') 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 -- cgit