cvsimport: avoid "use" with :tag
authorJeff King <peff@peff.net>
Wed, 24 May 2006 13:58:28 +0000 (09:58 -0400)
committerJunio C Hamano <junkio@cox.net>
Thu, 25 May 2006 07:18:42 +0000 (00:18 -0700)
Avoid "use POSIX qw(strftime dup2 :errno_h)"; it was reported
that a Perl installations on Mandrake 9.1 did not like it, even
though it understood "use POSIX qw(:errno_h)".  Funny.

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-cvsimport.perl

index af331d9..76f6246 100755 (executable)
@@ -23,7 +23,7 @@ use File::Basename qw(basename dirname);
 use Time::Local;
 use IO::Socket;
 use IO::Pipe;
-use POSIX qw(strftime dup2 :errno_h);
+use POSIX qw(strftime dup2 ENOENT);
 use IPC::Open2;
 
 $SIG{'PIPE'}="IGNORE";