]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
wafsamba: Have INSTALL_DIR() log directory creation
authorMartin Schwenke <martin@meltin.net>
Tue, 11 Sep 2018 04:35:02 +0000 (14:35 +1000)
committerAlexander Bokovoy <ab@samba.org>
Tue, 11 Sep 2018 04:59:11 +0000 (06:59 +0200)
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Alexander Bokovoy <ab@samba.org>
buildtools/wafsamba/wafsamba.py

index 93ca7ace43a8eff7b7983e1c15317497c202ac1a..dbcfe12aacac6ef71d54d3100ba3ccef012205d7 100644 (file)
@@ -903,6 +903,7 @@ def INSTALL_DIR(bld, path, chmod=0o755, env=None):
     if bld.is_install > 0:
         if not os.path.isdir(destpath):
             try:
+                Logs.info('* create %s', destpath)
                 os.makedirs(destpath)
                 os.chmod(destpath, chmod)
             except OSError as e: