From dce69c29e7a6c6e5f818bed21cb251b1a5f60556 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 16 Feb 2011 10:18:12 +1100 Subject: waf Fix dependencies for .pc (pkg-config) files We used the wrong parameter for the dependency calculation. thanks to Thomas Nagy for the fix! Andrew Bartlett --- buildtools/wafsamba/wafsamba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools/wafsamba/wafsamba.py') diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 0949949923..be8cad31ad 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -523,7 +523,7 @@ def SAMBA_GENERATOR(bld, name, rule, source='', target='', before='cc', ext_out='.c', samba_type='GENERATOR', - vars = [rule], + dep_vars = [rule] + (vars or []), name=name) if always: -- cgit