diff options
author | Jeff King <peff@peff.net> | 2006-05-24 09:58:28 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-25 00:18:42 -0700 |
commit | e49289dfb788ce47af2939621540fa97abe318ae (patch) | |
tree | 51c54bd0c1d536d861144eb9177e96346947918b /git-cvsimport.perl | |
parent | ed90cbf5f681c0144909457be3f4792b47604a5b (diff) | |
download | git-e49289dfb788ce47af2939621540fa97abe318ae.tar.gz |
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-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index af331d9c43..76f6246a31 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"; |