Skip to content

Commit 5384fae

Browse files
authored
Merge pull request #1481 from Unity-Technologies/remove-bootstrap-call
Removing call to automake's bootstrap script that used to be required…
2 parents f4c2bab + 3cd0cc3 commit 5384fae

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

external/buildscripts/build.pl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,6 @@
412412
my $automakeMakeFlags = "";
413413
print(">>> Installing automake from $automakeDir\n");
414414
chdir("$automakeDir") eq 1 or die ("failed to chdir to automake directory\n");
415-
if($windowsSubsystemForLinux)
416-
{
417-
#Windows subsystem needs to run bootstrap, and make needs to be run with -i due to one doc failing to build
418-
system("./bootstrap") eq 0 or die ("failed to bootstrap automake\n");
419-
$automakeMakeFlags = "-i";
420-
}
421415
system("./configure --prefix=$builtToolsDir") eq 0 or die ("failed to configure automake\n");
422416
system("make $automakeMakeFlags") eq 0 or die ("failed to make automake\n");
423417
system("make install");

0 commit comments

Comments
 (0)