diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-10-18 11:35:16 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-18 11:35:16 -0700 |
commit | e175768954816b00bbbba131ec1c411d2cd66582 (patch) | |
tree | 19d6f55a3146e926a99c92a30fda02b6b6bf9536 /git-cvsimport.perl | |
parent | 4aaa702794447d9b281dd22fe532fd61e02434e1 (diff) | |
download | git-e175768954816b00bbbba131ec1c411d2cd66582.tar.gz |
Fix cvsimport warning when called without --no-cvs-direct
Perl was warning that $opt_p was undefined in that case.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 0621dc3e2f..bbb83fb71c 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -487,7 +487,7 @@ unless($pid) { my @opt; @opt = split(/,/,$opt_p) if defined $opt_p; unshift @opt, '-z', $opt_z if defined $opt_z; - unless ($opt_p =~ m/--no-cvs-direct/) { + unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) { push @opt, '--cvs-direct'; } exec("cvsps",@opt,"-u","-A",'--root',$opt_d,$cvs_tree); |