Skip to content

Commit

Permalink
We shouldn't provision emsdk on cross-compiler builds, which don't ne…
Browse files Browse the repository at this point in the history
…ed it (dotnet#50098)
  • Loading branch information
directhex authored Mar 23, 2021
1 parent cb88894 commit d068d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono.proj
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@

<!-- Sets up emscripten if you don't have the EMSDK_PATH env variable set -->
<Target Name="ProvisionEmscripten"
Condition="'$(ShouldProvisionEmscripten)' == 'true'">
Condition="'$(ShouldProvisionEmscripten)' == 'true' and '$(SkipMonoCrossJitConfigure)' != 'true'">
<ReadLinesFromFile File="$(MSBuildThisFileDirectory)\wasm\emscripten-version.txt">
<Output TaskParameter="Lines" ItemName="_VersionLines" />
</ReadLinesFromFile>
Expand Down

0 comments on commit d068d95

Please sign in to comment.