From 33a68db28634f216d965e1c105b72d392681e35f Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 21 Aug 2011 15:17:57 +0100 Subject: [PATCH] Updated argument name for new API --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 435310d..70f5415 100644 --- a/build.py +++ b/build.py @@ -156,14 +156,14 @@ def remove_la_files(): warn("Found static archive '%s'; maybe build with --disable-static?", f) class CompileSetup(run.Setup): - def do_binding(self, impl, b, dep): + def do_binding(self, impl, b, iface): if isinstance(b, model.EnvironmentBinding): if b.name == 'PKG_CONFIG_PATH': do_pkg_config_binding(b, impl) else: do_env_binding(b, lookup(impl)) else: - run.Setup.do_binding(self, impl, b, dep) + run.Setup.do_binding(self, impl, b, iface) def do_build_internal(options, args): """build-internal""" -- 2.11.4.GIT