aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xiurt2
-rwxr-xr-xiurt_root_command2
-rw-r--r--lib/Iurt/Urpmi.pm2
3 files changed, 3 insertions, 3 deletions
diff --git a/iurt b/iurt
index 7ad4722..1ceb1ad 100755
--- a/iurt
+++ b/iurt
@@ -44,7 +44,7 @@ use Iurt::Process qw(perform_command kill_for_good sudo);
use Iurt::Mail qw(sendmail);
use Iurt::RPM qw(check_arch check_noarch);
use Iurt::Util qw(plog_init plog);
-use File::NCopy qw(copy);
+use File::Copy qw(copy);
use File::Path qw(mkpath);
use File::Spec::Functions qw(rel2abs);
use File::Basename qw(fileparse);
diff --git a/iurt_root_command b/iurt_root_command
index e64b1f7..fa9a13d 100755
--- a/iurt_root_command
+++ b/iurt_root_command
@@ -24,7 +24,7 @@ use strict;
my $program_name = 'iurt_root_command';
use Mkcd::Commandline qw(parseCommandLine usage);
use MDK::Common qw(any if_);
-use File::NCopy qw(copy);
+use File::Copy qw(copy);
use Iurt::Util qw(plog_init plog);
use Cwd 'realpath';
use File::Path qw(make_path);
diff --git a/lib/Iurt/Urpmi.pm b/lib/Iurt/Urpmi.pm
index 53d0756..2621478 100644
--- a/lib/Iurt/Urpmi.pm
+++ b/lib/Iurt/Urpmi.pm
@@ -3,7 +3,7 @@ package Iurt::Urpmi;
use strict;
use RPM4::Header;
use File::Basename;
-use File::NCopy qw(copy);
+use File::Copy qw(copy);
use MDV::Distribconf::Build;
use MDK::Common qw(cat_);
use Iurt::Chroot qw(add_local_user create_temp_chroot);