Skip to content

Commit

Permalink
fix(make): only generate makefile for multiple toolsets if requested (#…
Browse files Browse the repository at this point in the history
…133)

It's already like this in the msvs and ninja generators.

Refs: nodejs/node#40934
  • Loading branch information
targos committed Nov 24, 2021
1 parent 33ff306 commit f463a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/gyp/generator/make.py
Expand Up @@ -50,7 +50,7 @@
}

# Make supports multiple toolsets
generator_supports_multiple_toolsets = True
generator_supports_multiple_toolsets = gyp.common.CrossCompileRequested()

# Request sorted dependencies in the order from dependents to dependencies.
generator_wants_sorted_dependencies = False
Expand Down

0 comments on commit f463a77

Please sign in to comment.