summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_bundled.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-13 11:27:24 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-13 11:27:34 +1000
commitb7ffc6e5b228d21f547bec77f378f0fdc88b6dd2 (patch)
treeb82f67bf290f902af930ef5f8cd97372c021819e /buildtools/wafsamba/samba_bundled.py
parent9c6781277a9ebf5e0a9d65ece14b95335d596af6 (diff)
downloadsamba-b7ffc6e5b228d21f547bec77f378f0fdc88b6dd2.tar.gz
samba-b7ffc6e5b228d21f547bec77f378f0fdc88b6dd2.tar.bz2
samba-b7ffc6e5b228d21f547bec77f378f0fdc88b6dd2.zip
build: fixed a typo that prevented --bundled-libraries from working correctly
Jelmer noticed that --minimum-library-version=talloc:2.0.1 --bundled-libraries=!tevent didn't do the right thing.
Diffstat (limited to 'buildtools/wafsamba/samba_bundled.py')
-rw-r--r--buildtools/wafsamba/samba_bundled.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_bundled.py b/buildtools/wafsamba/samba_bundled.py
index f87ff8027c..6a393ebf2c 100644
--- a/buildtools/wafsamba/samba_bundled.py
+++ b/buildtools/wafsamba/samba_bundled.py
@@ -92,7 +92,7 @@ def CHECK_BUNDLED_SYSTEM(conf, libname, minversion='0.0.0',
# versions
if onlyif:
for syslib in TO_LIST(onlyif):
- f = 'FOUND_SYSTEM_%s' % syslib
+ f = 'FOUND_SYSTEMLIB_%s' % syslib
if not f in conf.env:
if 'NONE' in conf.env.BUNDLED_LIBS or '!'+libname in conf.env.BUNDLED_LIBS:
Logs.error('ERROR: Use of system library %s depends on missing system library %s' % (libname, syslib))