Skip to content

Commit 93569f7

Browse files
authored
Merge pull request #1194 from Unity-Technologies/unity-master-fix-wsl
Correct call to bootstrap script for wsl build
2 parents 8a3fd40 + 532565a commit 93569f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

external/buildscripts/build.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@
437437
if($windowsSubsystemForLinux)
438438
{
439439
#Windows subsystem needs to run bootstrap, and make needs to be run with -i due to one doc failing to build
440-
system("./bootstrap.sh") eq 0 or die ("failed to bootstrap automake\n");
440+
system("./bootstrap") eq 0 or die ("failed to bootstrap automake\n");
441441
$automakeMakeFlags = "-i";
442442
}
443443
system("./configure --prefix=$builtToolsDir") eq 0 or die ("failed to configure automake\n");

0 commit comments

Comments
 (0)