diff options
Diffstat (limited to 'dmake/make.c')
-rw-r--r-- | dmake/make.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dmake/make.c b/dmake/make.c index 0f7ab644627f..67af0653d35f 100644 --- a/dmake/make.c +++ b/dmake/make.c @@ -251,8 +251,9 @@ Make_targets()/* for( lp = Targets->ce_prq; lp != NIL(LINK); lp = lp->cl_next ) { CELLPTR tgt = lp->cl_prq; - if( !(tgt->ce_attr & A_UPDATED) ) - printf( "`%s' is up to date\n", tgt->CE_NAME ); + if( !(tgt->ce_attr & A_UPDATED) + && (Verbose & V_MAKE) ) + printf( "`%s' is up to date\n", tgt->CE_NAME ); } DB_RETURN( 0 ); |