summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-05-22 20:24:37 +0000
committerRoland McGrath <roland@redhat.com>1993-05-22 20:24:37 +0000
commitff71fe92778968fe8efab594d5310acc13d721d5 (patch)
tree0a1118edd627565757a4ecc4bffbc73b63ac54d3
parentfe92d8e656276d1100785ac2e58da3205f1415f7 (diff)
downloadgunmake-ff71fe92778968fe8efab594d5310acc13d721d5.tar.gz
Formerly file.c.~23~
-rw-r--r--file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/file.c b/file.c
index d5b4c02..e5cc418 100644
--- a/file.c
+++ b/file.c
@@ -336,12 +336,13 @@ remove_intermediates (sig)
error ("*** Deleting file `%s'", f->name);
else if (!silent_flag)
{
- if (!doneany)
+ if (! doneany)
{
fputs ("rm ", stdout);
doneany = 1;
}
- putchar (' ');
+ else
+ putchar (' ');
fputs (f->name, stdout);
fflush (stdout);
}