summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ed90cbf)
raw | patch | inline | side by side (parent: ed90cbf)
author | Jeff King <peff@peff.net> | |
Wed, 24 May 2006 13:58:28 +0000 (09:58 -0400) | ||
committer | Junio 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>
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 | patch | blob | history |
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index af331d9c4316a56db7bd4b3cfb4f1d5d8d5f6de5..76f6246a31b86dd54ca0556f76a8511d73be8ec7 100755 (executable)
--- a/git-cvsimport.perl
+++ b/git-cvsimport.perl
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";