Merge branch 'fixes'
authorJunio C Hamano <junkio@cox.net>
Wed, 12 Oct 2005 05:04:11 +0000 (22:04 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 12 Oct 2005 05:04:11 +0000 (22:04 -0700)
git-cvsimport.perl

index f35c0d0..f7c3a51 100755 (executable)
@@ -487,7 +487,10 @@ unless($pid) {
        my @opt;
        @opt = split(/,/,$opt_p) if defined $opt_p;
        unshift @opt, '-z', $opt_z if defined $opt_z;
-       exec("cvsps",@opt,"-u","-A","--cvs-direct",'--root',$opt_d,$cvs_tree);
+       unless ($opt_p =~ m/--no-cvs-direct/) {
+               push @opt, '--cvs-direct';
+       }
+       exec("cvsps",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
        die "Could not start cvsps: $!\n";
 }