diff options
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/NewNightlyTest.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index eb4fc50..c61bafa 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -584,8 +584,7 @@ my $UserUpdateList = join "\n", sort keys %UsersUpdated; ############################################################## if (!$NOCHECKOUT && !$NOBUILD) { my $EXTRAFLAGS = "--enable-spec --with-objroot=."; - if ( $VERBOSE ) - { + if ( $VERBOSE ){ print "CONFIGURE STAGE:\n"; print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1\n"; } @@ -614,6 +613,9 @@ if (!$NOCHECKOUT && !$NOBUILD) { my $a_file_sizes=""; my $o_file_sizes=""; if(!$BuildError){ + if ( $VERBOSE ){ + print "Organizing size of .o and .a files\n"; + } ChangeDir( "$BuildDir", "Build Directory" ); $afiles = `find . -iname '*.a' -ls`; $ofiles = `find . -iname '*.o' -ls`; |