summaryrefslogtreecommitdiff
path: root/lib/tevent/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tevent/wscript')
-rw-r--r--lib/tevent/wscript12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/tevent/wscript b/lib/tevent/wscript
index cc139ccee5..569740e8d0 100644
--- a/lib/tevent/wscript
+++ b/lib/tevent/wscript
@@ -25,12 +25,12 @@ LIBTALLOC_DIR= '../talloc'
def set_options(opt):
opt.BUILTIN_DEFAULT('replace')
opt.BUNDLED_EXTENSION_DEFAULT('tevent', noextenion='tevent')
- opt.recurse(LIBREPLACE_DIR)
- opt.recurse(LIBTALLOC_DIR)
+ opt.RECURSE(LIBREPLACE_DIR)
+ opt.RECURSE(LIBTALLOC_DIR)
def configure(conf):
- conf.sub_config(LIBREPLACE_DIR)
- conf.sub_config(LIBTALLOC_DIR)
+ conf.RECURSE(LIBREPLACE_DIR)
+ conf.RECURSE(LIBTALLOC_DIR)
if conf.CHECK_BUNDLED_SYSTEM('tevent', minversion=VERSION,
onlyif='talloc', implied_deps='replace talloc'):
@@ -42,8 +42,8 @@ def configure(conf):
conf.SAMBA_CONFIG_H()
def build(bld):
- bld.BUILD_SUBDIR(LIBREPLACE_DIR)
- bld.BUILD_SUBDIR(LIBTALLOC_DIR)
+ bld.RECURSE(LIBREPLACE_DIR)
+ bld.RECURSE(LIBTALLOC_DIR)
SRC = '''tevent.c tevent_debug.c tevent_fd.c tevent_immediate.c
tevent_queue.c tevent_req.c tevent_select.c