summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlib/util/wscript_build13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build
index 2588742485..b1cdfd5933 100755
--- a/lib/util/wscript_build
+++ b/lib/util/wscript_build
@@ -1,5 +1,8 @@
#!/usr/bin/env python
+# Please add any new SAMBA_SUBSYSTEM/SAMBA_LIBRARY to the bottom of the file
+# unless they are also required to build standalone ctdb.
+
bld.SAMBA_SUBSYSTEM('time-basic',
source='time_basic.c',
deps='replace',
@@ -36,11 +39,6 @@ bld.SAMBA_LIBRARY('socket-blocking',
local_include=False,
private_library=True)
-bld.SAMBA_LIBRARY('iov_buf',
- source='iov_buf.c',
- local_include=False,
- private_library=True)
-
bld.SAMBA_SUBSYSTEM('samba-util-core',
source='''xfile.c data_blob.c util_file.c time.c
signal.c util.c idtree.c fault.c
@@ -156,3 +154,8 @@ if not bld.env.SAMBA_UTIL_CORE_ONLY:
deps='talloc tdb strv util_tdb tdb-wrap samba-util',
local_include=False,
private_library=True)
+
+ bld.SAMBA_LIBRARY('iov_buf',
+ source='iov_buf.c',
+ local_include=False,
+ private_library=True)