summaryrefslogtreecommitdiff
path: root/dmake
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-05-24 22:50:24 +0300
committerTor Lillqvist <tlillqvist@novell.com>2011-05-24 22:50:24 +0300
commit77e426060e8b6e6d953df00e14015c353612d5d6 (patch)
treef8fde7c65b5a3abfbdbfda71d376a004fd20e932 /dmake
parentb1236ac54444d1d7afcdae92b12a840ba46664e1 (diff)
Output the "Executing shell macro" only with -vr
Diffstat (limited to 'dmake')
-rw-r--r--dmake/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmake/function.c b/dmake/function.c
index cd86810849e5..d0379f612971 100644
--- a/dmake/function.c
+++ b/dmake/function.c
@@ -587,7 +587,7 @@ int expand;
Do_profile_output( "s", M_TARGET, &cell );
/* Print the shell escape command. */
- if( !(rcp.st_attr & A_SILENT) ) {
+ if( Verbose & V_FORCEECHO ) {
printf( "%s: Executing shell macro: %s\n", Pname, data );
fflush(stdout);
}