From b7ffc6e5b228d21f547bec77f378f0fdc88b6dd2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 13 Apr 2010 11:27:24 +1000 Subject: 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. --- buildtools/wafsamba/samba_bundled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools/wafsamba') 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)) -- cgit