Skip to content

Commit

Permalink
real gyp fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Oct 20, 2021
1 parent 3805af4 commit cb72644
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 124 deletions.
2 changes: 1 addition & 1 deletion tools/gyp/pylib/gyp/input.py
Expand Up @@ -1657,7 +1657,7 @@ def RemoveLinkDependenciesFromNoneTargets(targets):
if dependencies:
for t in dependencies:
if target_dict.get("type", None) == "none":
if targets[t].get("variables", {}).get("link_dependency", 0):
if targets.get("t", {}).get("variables", {}).get("link_dependency", 0):
target_dict[dependency_key] = Filter(
target_dict[dependency_key], t
)
Expand Down

0 comments on commit cb72644

Please sign in to comment.