Only write "...patience..." every 5000th target instead of 1000th.
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@41295 a95241bf-73f2-0310-859d-f6bbb57e9c96
Diff
jam/README.CHANGES | 2 ++
jam/make.c | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
@@ -160,3 +160,5 @@
info in noise (why it failed). It should probably be a command line option
as it might be interesting in some cases. Also added a "Build Failure" at
the end if there were failed targets. (Fredrik Holmqvist)
* Only write "...patience..." every 5000th target instead of 1000th.
(Fredrik Holmqvist)
@@ -461,7 +461,7 @@
if( t->flags & T_FLAG_INTERNAL )
return;
if( !( ++counts->targets % 1000 ) && DEBUG_MAKE )
if( !( ++counts->targets % 5000 ) && DEBUG_MAKE )
printf( "...patience...\n" );
if( fate == T_FATE_ISTMP )