diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-21 23:05:59 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-21 13:57:14 +0100 |
commit | 9e2f39484c9b61d115d54dfc81d102d3eab0b586 (patch) | |
tree | 17c2a4e30a0fc017964066ea8cc2acb09fe0b422 /source4/lib | |
parent | 69c6e971a244e0837ed95537c9e4ea53e67b8b75 (diff) | |
download | samba-9e2f39484c9b61d115d54dfc81d102d3eab0b586.tar.gz samba-9e2f39484c9b61d115d54dfc81d102d3eab0b586.tar.bz2 samba-9e2f39484c9b61d115d54dfc81d102d3eab0b586.zip |
s4-ldb: fixed the build with a space in the ldb modules directory name
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sun Nov 21 13:57:14 CET 2010 on sn-devel-104
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 5c4054a918..4e6fc34d64 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -206,7 +206,7 @@ def build(bld): 'common/ldb.c', deps='tevent', includes='include', - cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir) + cflags=['-DLDB_MODULESDIR=\"%s\"' % modules_dir]) LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename' for t in LDB_TOOLS.split(): |