From 742cb4547ae1798ca77cdb3d0ab6483ab5dac531 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 Mar 2010 09:29:20 +1100 Subject: build: fixed case of system library deps --- buildtools/wafsamba/samba_deps.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'buildtools') diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py index 608f703b13..3d3af21259 100644 --- a/buildtools/wafsamba/samba_deps.py +++ b/buildtools/wafsamba/samba_deps.py @@ -96,7 +96,11 @@ def build_dependencies(self): # this is needed for the ccflags of libs that come from pkg_config self.uselib = list(self.direct_syslibs) - + if getattr(self, 'uselib', None): + up_list = [] + for l in self.uselib: + up_list.append(l.upper()) + self.uselib = up_list def build_includes(self): -- cgit