Build.PL
changeset 102 3000f3962b14
parent 101 bdd9a0816a33
child 131 d8fa60488868
child 132 1306901e3462
--- a/Build.PL	Tue Jan 25 23:10:48 2011 +0100
+++ b/Build.PL	Tue Jan 25 23:45:14 2011 +0100
@@ -12,12 +12,12 @@
     use File::Path;
     sub ACTION_build {
 	my $self = shift;
-	File::Path::make_path(qw(tmp/bind/master tmp/bind/zones.d));
+	mkpath(qw(tmp/bind/master tmp/bind/zones.d));
 	$self->SUPER::ACTION_build;
     }
     sub ACTION_realclean {
 	my $self = shift;
-	File::Path::remove_tree(qw(tmp/bind/master tmp/bind/zones.d), { safe => 1 });
+	rmtree(qw(tmp/bind/master tmp/bind/zones.d), { safe => 1 });
 	map { rmdir } qw(tmp/bind tmp);
 	$self->SUPER::ACTION_realclean;
     }
@@ -35,7 +35,6 @@
         "Net::LibIDN" => "0",
         "Template"    => "0"
     },
-    build_requires => { "Pod::Coverage" => 0, "Test::Command" => "0.08" },
     script_files => [glob "bin/*"],    # avoid .swp files
 );