summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/build_scripts/handle-built-files.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build_scripts/handle-built-files.py b/tools/build_scripts/handle-built-files.py
index 1b23f166..862ab5f7 100755
--- a/tools/build_scripts/handle-built-files.py
+++ b/tools/build_scripts/handle-built-files.py
@@ -99,6 +99,7 @@ def install_built_h_files():
built_h_dir = sys.argv[2]
install_dir_root = os.path.join(os.getenv('MESON_INSTALL_DESTDIR_PREFIX'), sys.argv[3])
+ quiet = bool(os.getenv('MESON_INSTALL_QUIET'))
for file in sys.argv[4:]:
path_h = os.path.join(built_h_dir, file)
rel_dir = os.path.dirname(file)
@@ -106,7 +107,8 @@ def install_built_h_files():
install_dir = os.path.join(install_dir_root, rel_dir)
else:
install_dir = install_dir_root
- print('Installing ', path_h, ' to ', install_dir)
+ if not quiet:
+ print('Installing ', path_h, ' to ', install_dir)
# Create the installation directory, if it does not exist.
os.makedirs(install_dir, exist_ok=True)