Sync changes from SourceMod's bootstrap script.
This commit is contained in:
parent
f69a8e66c6
commit
db001a6eb5
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/perl
|
||||
# vim: set ts=2 sw=2 tw=99 noet:
|
||||
|
||||
use strict;
|
||||
use Cwd;
|
||||
|
@ -10,7 +11,7 @@ chdir($path);
|
|||
|
||||
require 'helpers.pm';
|
||||
|
||||
#Go to main source dir
|
||||
#Go back above build dir
|
||||
chdir(Build::PathFormat('../../..'));
|
||||
|
||||
#Get the source path.
|
||||
|
@ -21,6 +22,7 @@ my $reconf = 0;
|
|||
if (!(-f 'OUTPUT/.ambuild2/graph') || !(-f 'OUTPUT/.ambuild2/vars')) {
|
||||
rmtree('OUTPUT');
|
||||
mkdir('OUTPUT') or die("Failed to create output folder: $!\n");
|
||||
}
|
||||
chdir('OUTPUT');
|
||||
my ($result, $argn);
|
||||
$argn = $#ARGV + 1;
|
||||
|
@ -39,7 +41,6 @@ if (!(-f 'OUTPUT/.ambuild2/graph') || !(-f 'OUTPUT/.ambuild2/vars')) {
|
|||
if ($? != 0) {
|
||||
die("Could not configure: $!\n");
|
||||
}
|
||||
}
|
||||
|
||||
sub IsNewer
|
||||
{
|
||||
|
@ -53,4 +54,3 @@ sub IsNewer
|
|||
exit(0);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user