summaryrefslogtreecommitdiff
path: root/third_party/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-11-24 13:34:25 +0100
committerAndreas Schneider <asn@cryptomilk.org>2017-11-25 10:14:13 +0100
commit8635465d77496e882ca73477690bbd20d877a197 (patch)
tree6af1d731f589e20de0efd489a0b5b565a6f022f8 /third_party/wscript
parent6fbc8b810e094b946b92fb720953400fe28041ab (diff)
downloadsamba-8635465d77496e882ca73477690bbd20d877a197.tar.gz
build: Move pam_wrapper to third_party
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'third_party/wscript')
-rw-r--r--third_party/wscript5
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/wscript b/third_party/wscript
index 72f1daabcde..9a86dfe44e3 100644
--- a/third_party/wscript
+++ b/third_party/wscript
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import samba_git
+import Options
import Utils
import os
import sys
@@ -56,6 +57,8 @@ def configure(conf):
conf.RECURSE('nss_wrapper')
conf.RECURSE('resolv_wrapper')
conf.RECURSE('uid_wrapper')
+ if Options.options.with_pam:
+ conf.RECURSE('pam_wrapper')
def build(bld):
@@ -88,3 +91,5 @@ def build(bld):
bld.RECURSE('resolv_wrapper')
if bld.CONFIG_GET('UID_WRAPPER'):
bld.RECURSE('uid_wrapper')
+ if bld.CONFIG_GET('PAM_WRAPPER'):
+ bld.RECURSE('pam_wrapper')