projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a92bebe
)
Honour CVS_SERVER.
author
Sven Verdoolaege
<skimo@kotnet.org>
Sun, 3 Jul 2005 10:26:51 +0000
(12:26 +0200)
committer
Sven Verdoolaege
<skimo@kotnet.org>
Sun, 3 Jul 2005 10:26:51 +0000
(12:26 +0200)
git-cvsimport-script
patch
|
blob
|
history
diff --git
a/git-cvsimport-script
b/git-cvsimport-script
index
dffd134
..
c514d14
100755
(executable)
--- a/
git-cvsimport-script
+++ b/
git-cvsimport-script
@@
-148,6
+148,8
@@
sub conn {
my $pw = IO::Pipe->new();
my $pid = fork();
die "Fork: $!\n" unless defined $pid;
+ my $cvs = 'cvs';
+ $cvs = $ENV{CVS_SERVER} if exists $ENV{CVS_SERVER};
unless($pid) {
$pr->writer();
$pw->reader();
@@
-155,7
+157,7
@@
sub conn {
dup2($pr->fileno(),1);
$pr->close();
$pw->close();
- exec(
"cvs"
,"server");
+ exec(
$cvs
,"server");
}
$pw->writer();
$pr->reader();