Changeset 1558 in ProjectBuilder for devel/pb-modules/lib/ProjectBuilder/Base.pm


Ignore:
Timestamp:
May 21, 2012, 3:56:09 AM (12 years ago)
Author:
Bruno Cornec
Message:
  • pb: [BUGFIX] added code assumed it had Parallel::ForkManager package. (Eric Anderson)
  • Fix more typos on comma (Bruno Cornec)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Base.pm

    r1528 r1558  
    435435
    436436This function checks that the commands needed for the subsystem are indeed present.
    437 The required commands are passed as a coma separated string as first parameter.
    438 The optional commands are passed as a coma separated string as second parameter.
     437The required commands are passed as a comma separated string as first parameter.
     438The optional commands are passed as a comma separated string as second parameter.
    439439
    440440=cut
     
    450450$opt2 = $opt->{$appname} if (defined $opt and defined $appname);
    451451
    452 # cmds is a string of coma separated commands
     452# cmds is a string of comma separated commands
    453453if (defined $req2) {
    454454    foreach my $file (split(/,/,$req2)) {
     
    457457}
    458458
    459 # opts is a string of coma separated commands
     459# opts is a string of comma separated commands
    460460if (defined $opt2) {
    461461    foreach my $file (split(/,/,$opt2)) {
Note: See TracChangeset for help on using the changeset viewer.