From 0444f47ce5ac660365df15a8edc518de3ce09ba4 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 5 Oct 2009 03:14:02 -0500 Subject: [PATCH] Fixed build hopefully. --- tools/buildbot/bootstrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/buildbot/bootstrap.pl b/tools/buildbot/bootstrap.pl index 6e0681b70..74fd0152e 100755 --- a/tools/buildbot/bootstrap.pl +++ b/tools/buildbot/bootstrap.pl @@ -4,7 +4,7 @@ use strict; use Cwd; use File::Basename; -use File::Path 'remove_tree'; +use File::Path; my ($myself, $path) = fileparse($0); chdir($path); @@ -40,7 +40,7 @@ if (!(-d 'OUTPUT')) { } if ($reconf) { - remove_tree('OUTPUT'); + rmtree('OUTPUT'); mkdir('OUTPUT') or die("Failed to create output folder: $!\n"); chdir('OUTPUT'); my ($result);