From: Martin Schwenke Date: Tue, 11 Sep 2018 04:35:02 +0000 (+1000) Subject: wafsamba: Have INSTALL_DIR() log directory creation X-Git-Tag: tdb-1.3.17~1658 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4fa3f982a38bce10d471c5b309f4f0f631c300c;p=thirdparty%2Fsamba.git wafsamba: Have INSTALL_DIR() log directory creation Signed-off-by: Martin Schwenke Reviewed-by: Alexander Bokovoy --- diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 93ca7ace43a..dbcfe12aaca 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -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: