diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-04-23 17:59:23 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-04-23 18:52:06 +0200 |
commit | 0645c01b8545ba3a313740feea50a4b8d60a7fb6 (patch) | |
tree | f40daac42f3c95060fe53a591218e4b3e67e5a6d | |
parent | 93179239ebda8e34c3fda671c1127a8214c216fa (diff) | |
download | samba-0645c01b8545ba3a313740feea50a4b8d60a7fb6.tar.gz samba-0645c01b8545ba3a313740feea50a4b8d60a7fb6.tar.bz2 samba-0645c01b8545ba3a313740feea50a4b8d60a7fb6.zip |
Fix case of libUTIL_LDB.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Apr 23 18:52:06 CEST 2011 on sn-devel-104
-rwxr-xr-x | lib/util/wscript_build | 12 | ||||
-rw-r--r-- | source4/dsdb/wscript_build | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 93827bcf5b..aad386ef2a 100755 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -102,12 +102,12 @@ bld.SAMBA_SUBSYSTEM('UTIL_TEVENT', if bld.env._SAMBA_BUILD_ == 4: - bld.SAMBA_SUBSYSTEM('UTIL_LDB', - source='util_ldb.c', - local_include=False, - public_deps='ldb', - public_headers='util_ldb.h' - ) + bld.SAMBA_SUBSYSTEM('util_ldb', + source='util_ldb.c', + local_include=False, + public_deps='ldb', + public_headers='util_ldb.h' + ) bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD', diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index 83d7433c3f..9d56e4f150 100644 --- a/source4/dsdb/wscript_build +++ b/source4/dsdb/wscript_build @@ -16,7 +16,7 @@ bld.SAMBA_LIBRARY('samdb-common', source='common/util.c common/util_groups.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c', autoproto='common/proto.h', private_library=True, - deps='ldb NDR_DRSBLOBS UTIL_LDB LIBCLI_AUTH samba-hostconfig samba_socket cli-ldap-common flag_mapping' + deps='ldb NDR_DRSBLOBS util_ldb LIBCLI_AUTH samba-hostconfig samba_socket cli-ldap-common flag_mapping' ) |