diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-24 09:29:20 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:05 +1000 |
commit | 742cb4547ae1798ca77cdb3d0ab6483ab5dac531 (patch) | |
tree | c1d484ed7c68d8c908388e286d38af143c355d94 /buildtools | |
parent | 988bc0cdc2604b9d309af9895f3716e4bca59d47 (diff) | |
download | samba-742cb4547ae1798ca77cdb3d0ab6483ab5dac531.tar.gz samba-742cb4547ae1798ca77cdb3d0ab6483ab5dac531.tar.bz2 samba-742cb4547ae1798ca77cdb3d0ab6483ab5dac531.zip |
build: fixed case of system library deps
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_deps.py | 6 |
1 files changed, 5 insertions, 1 deletions
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): |