aboutsummaryrefslogtreecommitdiff
path: root/git-cvsimport.perl
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2006-05-24 09:58:28 -0400
committerJunio C Hamano <junkio@cox.net>2006-05-25 00:18:42 -0700
commite49289dfb788ce47af2939621540fa97abe318ae (patch)
tree51c54bd0c1d536d861144eb9177e96346947918b /git-cvsimport.perl
parented90cbf5f681c0144909457be3f4792b47604a5b (diff)
downloadgit-e49289dfb788ce47af2939621540fa97abe318ae.tar.gz
git-e49289dfb788ce47af2939621540fa97abe318ae.tar.xz
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 <junkio@cox.net>
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-xgit-cvsimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index af331d9c4..76f6246a3 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";