summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2006-05-24 13:58:28 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-25 07:18:42 (GMT)
commite49289dfb788ce47af2939621540fa97abe318ae (patch)
tree51c54bd0c1d536d861144eb9177e96346947918b
parented90cbf5f681c0144909457be3f4792b47604a5b (diff)
downloadgit-e49289dfb788ce47af2939621540fa97abe318ae.zip
git-e49289dfb788ce47af2939621540fa97abe318ae.tar.gz
git-e49289dfb788ce47af2939621540fa97abe318ae.tar.bz2
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>
-rwxr-xr-xgit-cvsimport.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl
index af331d9..76f6246 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";