# HG changeset patch # User Heiko Schlittermann # Date 1295995514 -3600 # Node ID 3000f3962b14ee421c7ff868dc7365f87b1b076d # Parent bdd9a0816a335678ff5a90928f6fc95d4ffc75fc make it working with lenny's File::Path diff -r bdd9a0816a33 -r 3000f3962b14 Build.PL --- 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 );