From dba1c0cea06fe823507f6660f8c4d9997e77b4e3 Mon Sep 17 00:00:00 2001 From: Aurelien Larcher Date: Thu, 14 Jan 2021 22:58:41 +0100 Subject: [PATCH] bass-o-matic: try to silent --- tools/bass/component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bass/component.py b/tools/bass/component.py index 2102a5cddcf..a96e05d8d79 100755 --- a/tools/bass/component.py +++ b/tools/bass/component.py @@ -91,7 +91,7 @@ def run_make(self, path, targets): if self.debug: logger.debug('Executing \'gmake %s\' in %s', targets, path) - proc = subprocess.Popen(['gmake', '-s', targets], + proc = subprocess.Popen(['GNUMAKEFLAGS=--no-print-directory', 'gmake', '-s', targets], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, cwd=path,