summaryrefslogtreecommitdiff
path: root/dynconfig
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-08-10 11:42:46 +0200
committerAndrew Bartlett <abartlet@samba.org>2017-08-24 09:29:05 +0200
commit3a719dc68c80fe28f8fc6eb1bed3eb3e581a86da (patch)
treed82b5e8ca2bb0995071932feffa9669598f34b4d /dynconfig
parent4311332a073787f4ca24cd0b89685632cb29134c (diff)
downloadsamba-3a719dc68c80fe28f8fc6eb1bed3eb3e581a86da.tar.gz
dynconfig: Use INSTALL_DIR to create directories
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12957 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Thu Aug 24 09:29:05 CEST 2017 on sn-devel-144
Diffstat (limited to 'dynconfig')
-rw-r--r--dynconfig/wscript9
1 files changed, 6 insertions, 3 deletions
diff --git a/dynconfig/wscript b/dynconfig/wscript
index 4eaa4c0b0c4..7e9bde929d0 100644
--- a/dynconfig/wscript
+++ b/dynconfig/wscript
@@ -415,9 +415,12 @@ def build(bld):
cflags=cflags)
# install some extra empty directories
- bld.INSTALL_DIRS("", "${CONFIGDIR} ${PRIVATE_DIR} ${LOGFILEBASE}");
- bld.INSTALL_DIRS("", "${PRIVATE_DIR} ${PRIVILEGED_SOCKET_DIR}")
- bld.INSTALL_DIRS("", "${STATEDIR} ${CACHEDIR}");
+ bld.INSTALL_DIR("${CONFIGDIR}")
+ bld.INSTALL_DIR("${LOGFILEBASE}")
+ bld.INSTALL_DIR("${PRIVILEGED_SOCKET_DIR}")
+ bld.INSTALL_DIR("${PRIVATE_DIR}")
+ bld.INSTALL_DIR("${STATEDIR}")
+ bld.INSTALL_DIR("${CACHEDIR}")
# these might be on non persistent storage
bld.INSTALL_DIRS("", "${LOCKDIR} ${PIDDIR} ${SOCKET_DIR}")