Changeset 2561


Ignore:
Timestamp:
21/09/2009 23:53:56 (2 years ago)
Author:
chris
Message:

Print info lines to STDERR so that they don't confuse the configure
scripts when they capture stdout to get the box version, for example.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/infrastructure/BoxPlatform.pm.in

    r2328 r2561  
    9090                if($cpus =~ m/hw.ncpu:\s(\d+)/ && $1 > 1) 
    9191                { 
    92                         print "$1 processors detected, will set make to perform concurrent jobs\n"; 
     92                        print STDERR "$1 processors detected, will set make to perform concurrent jobs\n"; 
    9393                        $sub_make_options = ' -j '.($1 + 1); 
    9494                } 
     
    9797                if(-d '/sw/include' && -d '/sw/lib') 
    9898                { 
    99                         print "Fink installation detected, will use headers and libraries\n"; 
     99                        print STDERR "Fink installation detected, will use headers and libraries\n"; 
    100100                        $platform_compile_line_extra = '-I/sw/include '; 
    101101                        $platform_link_line_extra = '-L/sw/lib '; 
Note: See TracChangeset for help on using the changeset viewer.