We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4c2bab + 3cd0cc3 commit 5384faeCopy full SHA for 5384fae
external/buildscripts/build.pl
@@ -412,12 +412,6 @@
412
my $automakeMakeFlags = "";
413
print(">>> Installing automake from $automakeDir\n");
414
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
- }
421
system("./configure --prefix=$builtToolsDir") eq 0 or die ("failed to configure automake\n");
422
system("make $automakeMakeFlags") eq 0 or die ("failed to make automake\n");
423
system("make install");
0 commit comments