From: Jeff King Date: Wed, 24 May 2006 13:58:28 +0000 (-0400) Subject: cvsimport: avoid "use" with :tag X-Git-Tag: v1.4.0-rc1~67 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=e49289dfb788ce47af2939621540fa97abe318ae cvsimport: avoid "use" with :tag 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 --- diff --git a/git-cvsimport.perl b/git-cvsimport.perl index af331d9c..76f6246a 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -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";