diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-10-17 00:48:20 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-11-12 20:21:09 +0100 |
commit | 776424e99113a3ffc6679c583093e2892304a7fd (patch) | |
tree | 704f016dc668e2627bd56c603c37454fbcd26633 /wscript_build | |
parent | 0de6799996955fbf8e19ace8c4b7b61f5a262cb5 (diff) | |
download | samba-776424e99113a3ffc6679c583093e2892304a7fd.tar.gz |
Add samba.ensure_third_party_module() function, loading external python modules from third_party/ if the system doesn't provide them.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'wscript_build')
-rw-r--r-- | wscript_build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wscript_build b/wscript_build index d7dea5466ea..e74841e96a1 100644 --- a/wscript_build +++ b/wscript_build @@ -74,8 +74,7 @@ bld.RECURSE('lib/socket_wrapper') bld.RECURSE('lib/nss_wrapper') bld.RECURSE('lib/uid_wrapper') if bld.CHECK_FOR_THIRD_PARTY(): - bld.RECURSE('third_party/zlib') - bld.RECURSE('third_party/popt') + bld.RECURSE('third_party') bld.RECURSE('source4/lib/stream') bld.RECURSE('lib/afs') bld.RECURSE('lib/util') |