diff options
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/wscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ctdb/wscript b/ctdb/wscript index 59deb8cce09..06cc1542f78 100644 --- a/ctdb/wscript +++ b/ctdb/wscript @@ -861,12 +861,12 @@ def build(bld): 'config/notification.README', destname='README') - bld.install_dir(bld.env.CTDB_LOGDIR) - bld.install_dir(bld.env.CTDB_RUNDIR) - bld.install_dir(bld.env.CTDB_VARDIR) + bld.INSTALL_DIR(bld.env.CTDB_LOGDIR) + bld.INSTALL_DIR(bld.env.CTDB_RUNDIR) + bld.INSTALL_DIR(bld.env.CTDB_VARDIR) for d in ['volatile', 'persistent', 'state']: - bld.install_dir(os.path.join(bld.env.CTDB_VARDIR, d)) + bld.INSTALL_DIR(os.path.join(bld.env.CTDB_VARDIR, d)) bld.SAMBA_BINARY('errcode', source='tests/src/errcode.c', |