Changeset 5680

Show
Ignore:
Timestamp:
11/04/09 10:24:09 (3 weeks ago)
Author:
balaji
Message:

Allow VERBOSE=1 or V=1 format for simplemake. Fixes ticket #920.

Reviewed by goodell.

Location:
mpich2/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/README.vin

    r5435 r5680  
    130130    This step should succeed if there were no problems with the 
    131131    preceding step.  Check file m.txt. If there were problems, 
    132     do a "make clean" and then run make again with VERBOSE=1  
    133  
    134       make VERBOSE=1 |& tee m.txt       (for csh and tcsh) 
     132    do a "make clean" and then run make again with V=1 
     133 
     134      make V=1 |& tee m.txt       (for csh and tcsh) 
    135135 
    136136      OR 
    137137 
    138       make VERBOSE=1 2>&1 | tee m.txt   (for bash and sh) 
     138      make V=1 2>&1 | tee m.txt   (for bash and sh) 
    139139 
    140140    and then attach m.txt and c.txt to your bug report. 
  • mpich2/trunk/maint/simplemake.in

    r5383 r5680  
    50655065    $escaped_rule =~ s/$newline(\t+)\@*/ ; \\$newline$1echo /g; 
    50665066 
    5067     print FD "\t\@if [ \"x\$(VERBOSE)\" != \"x1\" ] ; then \\$newline"; 
     5067    print FD "\t\@if [ \"x\$(VERBOSE)\" != \"x1\" -a \"x\$(V)\" != \"x1\" ] ; then \\$newline"; 
    50685068    print FD "\t  echo \"$echocmd\" ; \\$newline"; 
    50695069    print FD "\telse \\$newline";