diff options
author | Roland McGrath <roland@redhat.com> | 1992-09-30 23:21:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-09-30 23:21:22 +0000 |
commit | 313e5ec45d303a392d7e7fc9cd97e37715262d6a (patch) | |
tree | 2080c43a6578719cd97cafa1298e3b857381b535 /main.c | |
parent | b0cafff1bfb7d3b79ca06fec15feea5155645aa5 (diff) | |
download | gunmake-313e5ec45d303a392d7e7fc9cd97e37715262d6a.tar.gz |
Formerly main.c.~60~
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -590,8 +590,9 @@ main (argc, argv, envp) makelevel = 0; } - /* Always do -w in sub-makes and under -C. */ - print_directory_flag |= directories != 0 || makelevel > 0; + /* Except under -s, always do -w in sub-makes and under -C. */ + if (!silent_flag && (directories != 0 || makelevel > 0)) + print_directory_flag = 1; /* Construct the list of include directories to search. */ |