summaryrefslogtreecommitdiff
path: root/git-cvsimport.perl
diff options
context:
space:
mode:
authorAndreas Ericsson <exon@op5.se>2005-11-25 01:37:09 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-11-25 11:38:18 (GMT)
commit2c52a42dd720ed3cf1eadbc4a4e92be4cdf52f1d (patch)
tree2a617f601c4e2f65dd524c7d3ef244a020ba3650 /git-cvsimport.perl
parentee72aeaf009417156a3599b0eb69da3f7023ca07 (diff)
downloadgit-2c52a42dd720ed3cf1eadbc4a4e92be4cdf52f1d.zip
git-2c52a42dd720ed3cf1eadbc4a4e92be4cdf52f1d.tar.gz
git-2c52a42dd720ed3cf1eadbc4a4e92be4cdf52f1d.tar.bz2
cvsimport: Don't let local settings hinder cvs user-migration.
Avoid this by passing "--norc" to cvsps. Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-xgit-cvsimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index efe1934..08a890c 100755
--- a/git-cvsimport.perl
+++ b/git-cvsimport.perl
@@ -502,7 +502,7 @@ unless($pid) {
if ($opt_P) {
exec("cat", $opt_P);
} else {
- exec("cvsps",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
+ exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
die "Could not start cvsps: $!\n";
}
}