Module: wine Branch: master Commit: d014b627879d2b4036a5ca5fcc63c423f1898ffe URL: https://source.winehq.org/git/wine.git/?a=commit;h=d014b627879d2b4036a5ca5fc...
Author: Alexandre Julliard julliard@winehq.org Date: Mon May 27 21:51:00 2019 +0200
makefiles: Build fonts in quiet mode.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
tools/makedep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/makedep.c b/tools/makedep.c index 2c5c503..67ff3b9 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -2826,7 +2826,7 @@ static void output_source_sfd( struct makefile *make, struct incl_file *source, strarray_add( &make->all_targets, xstrdup( font )); output( "%s: %s %s\n", obj_dir_path( make, font ), tools_path( make, "sfnt2fon" ), ttf_file ); - output( "\t%s -o $@ %s %s\n", tools_path( make, "sfnt2fon" ), ttf_file, args ); + output( "\t%s -q -o $@ %s %s\n", tools_path( make, "sfnt2fon" ), ttf_file, args ); add_install_rule( make, source->name, xstrdup(font), strmake( "d$(fontdir)/%s", font )); } }