Changeset 30 in ProjectBuilder for devel/pb/lib/common.pm


Ignore:
Timestamp:
Aug 2, 2007, 12:39:27 AM (17 years ago)
Author:
Bruno Cornec
Message:

fix typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/lib/common.pm

    r29 r30  
    132132
    133133my $cmd=shift;
    134 my $cmt=shift || $cmt=$cmd;
     134my $cmt=shift || $cmd;
    135135
    136 print $LOG "$cmt ...";
     136print $LOG "$cmt... ";
    137137system("$cmd");
    138138if ($? == -1) {
     
    141141    printf $LOG "child died with signal %d, %s coredump\n", ($? & 127),  ($? & 128) ? 'with' : 'without' if ($debug >= 0);
    142142} else {
    143     print $LOG " OK\n" if ($debug >= 0);
     143    print $LOG "OK\n" if ($debug >= 0);
     144}
    144145}
    1451461;
Note: See TracChangeset for help on using the changeset viewer.