Fixed build hopefully.

This commit is contained in:
Scott Ehlert 2009-10-05 03:14:02 -05:00
parent 106604e469
commit 0444f47ce5

View File

@ -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);