Changeset 299 in ProjectBuilder for devel


Ignore:
Timestamp:
Jan 24, 2008, 2:01:14 AM (16 years ago)
Author:
Bruno Cornec
Message:

Fix a bug in env var declaration for CVS (CVS_RSH not CVSRSH)

File:
1 edited

Legend:

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

    r298 r299  
    807807    my ($cvsroot,$cvsrsh) = pb_conf_get("cvsroot","cvsrsh");
    808808    $ENV{'CVSROOT'} = $cvsroot->{$proj} if (defined $cvsroot->{$proj});
    809     $ENV{'CVSRSH'} = $cvsrsh->{$proj} if (defined $cvsrsh->{$proj});
     809    $ENV{'CVS_RSH'} = $cvsrsh->{$proj} if (defined $cvsrsh->{$proj});
    810810} else {
    811811    die "cms $cms->{$proj} unknown";
Note: See TracChangeset for help on using the changeset viewer.