summaryrefslogtreecommitdiff
path: root/ctdb/wscript
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@samba.org>2019-04-18 20:14:31 +0200
committerMartin Schwenke <martins@samba.org>2019-05-09 04:24:56 +0000
commit04c0e5212d53e8018f631927bd7d07edd724b77c (patch)
tree5890ae6a56d6919d06441bc48ace528ad608eb19 /ctdb/wscript
parentae9fb93393bcadbc71328335e481e4381ecb65bf (diff)
downloadsamba-04c0e5212d53e8018f631927bd7d07edd724b77c.tar.gz
ctdb/build: fix ctdb_mutex_ceph_rados_helper builds
2b5dbb352553699afce62dca4964eb0bd64477f8 fixed builds with an explicit --with-libcephfs but broke builds against system Ceph libraries. This change handles both cases. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net> Autobuild-User(master): Martin Schwenke <martins@samba.org> Autobuild-Date(master): Thu May 9 04:24:56 UTC 2019 on sn-devel-184
Diffstat (limited to 'ctdb/wscript')
-rw-r--r--ctdb/wscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/ctdb/wscript b/ctdb/wscript
index eccc5e76f48..614e042bd70 100644
--- a/ctdb/wscript
+++ b/ctdb/wscript
@@ -680,10 +680,13 @@ def build(bld):
destname='README')
if bld.env.HAVE_LIBRADOS:
+ rados_inc = ' include'
+ if bld.CONFIG_GET('CPPPATH_RADOS') is not None:
+ rados_inc = bld.CONFIG_GET('CPPPATH_RADOS') + rados_inc
bld.SAMBA_BINARY('ctdb_mutex_ceph_rados_helper',
source='utils/ceph/ctdb_mutex_ceph_rados_helper.c',
deps='talloc tevent rados ceph-common',
- includes=bld.CONFIG_GET('CPPPATH_RADOS'),
+ includes=rados_inc,
install_path='${CTDB_HELPER_BINDIR}')
sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g' % (bld.env.CTDB_VARDIR)