diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-11-13 22:15:49 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-11-14 15:49:36 +0100 |
commit | 03759fe0223771df9cb77a3391468c0b64d36410 (patch) | |
tree | 711066df4821d5e7ff86f717e12b474e6199d91e /buildtools | |
parent | 38495995c924ce4339a0f4982e1a87ce8bcfe640 (diff) | |
download | samba-03759fe0223771df9cb77a3391468c0b64d36410.tar.gz samba-03759fe0223771df9cb77a3391468c0b64d36410.tar.bz2 samba-03759fe0223771df9cb77a3391468c0b64d36410.zip |
waf: Fix uselib_store for system libsubunit.
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_bundled.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_bundled.py b/buildtools/wafsamba/samba_bundled.py index 95d0c7d82e..a29b3aa220 100644 --- a/buildtools/wafsamba/samba_bundled.py +++ b/buildtools/wafsamba/samba_bundled.py @@ -127,7 +127,7 @@ def CHECK_BUNDLED_SYSTEM_PKG(conf, libname, minversion='0.0.0', if conf.check_cfg(package=pkg, args='"%s >= %s" --cflags --libs' % (pkg, minversion), - msg=msg): + msg=msg, uselib_store=libname.upper()): conf.SET_TARGET_TYPE(libname, 'SYSLIB') conf.env[found] = True if implied_deps: |