projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed90cbf
)
cvsimport: avoid "use" with :tag
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>
git-cvsimport.perl
patch
|
blob
|
history
diff --git
a/git-cvsimport.perl
b/git-cvsimport.perl
index
af331d9
..
76f6246
100755
(executable)
--- 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";