diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-13 11:27:24 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-13 11:27:34 +1000 |
commit | b7ffc6e5b228d21f547bec77f378f0fdc88b6dd2 (patch) | |
tree | b82f67bf290f902af930ef5f8cd97372c021819e /buildtools | |
parent | 9c6781277a9ebf5e0a9d65ece14b95335d596af6 (diff) | |
download | samba-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')
-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 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)) |