Skip to content

Commit

Permalink
bass-o-matic: try to silent
Browse files Browse the repository at this point in the history
  • Loading branch information
alarcher committed Feb 1, 2021
1 parent 0520734 commit dba1c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bass/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit dba1c0c

Please sign in to comment.