Skip to content

Commit

Permalink
third_party_dir env var should be case-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
cfredric committed Feb 8, 2022
1 parent ebd9d09 commit 6a060b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/private/rustc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def construct_arguments(
env["SYSROOT"] = toolchain.sysroot

env["RULES_RUST_RENAME_FIRST_PARTY_CRATES"] = str(toolchain._rename_first_party_crates).lower()
env["RULES_RUST_THIRD_PARTY_DIR"] = str(toolchain._third_party_dir).lower()
env["RULES_RUST_THIRD_PARTY_DIR"] = toolchain._third_party_dir

# extra_rustc_flags apply to the target configuration, not the exec configuration.
if hasattr(ctx.attr, "_extra_rustc_flags") and not is_exec_configuration(ctx):
Expand Down

0 comments on commit 6a060b4

Please sign in to comment.