Skip to content

Commit

Permalink
Fix for CL 229790895.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 229850165
  • Loading branch information
tensorflower-gardener committed Jan 18, 2019
1 parent 799ec6e commit 4e8bf7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion third_party/gpus/cuda_configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ def _create_remote_cuda_repository(repository_ctx, remote_config_repo):
)
repository_ctx.template(
"crosstool/BUILD",
Label(remote_config_repo + "/crosstool/BUILD"),
Label(remote_config_repo + "/crosstool:BUILD"),
{},
)

Expand Down
2 changes: 1 addition & 1 deletion third_party/tensorrt/tensorrt_configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _tensorrt_configure_impl(repository_ctx):
if _TF_TENSORRT_CONFIG_REPO in repository_ctx.os.environ:
# Forward to the pre-configured remote repository.
remote_config_repo = repository_ctx.os.environ[_TF_TENSORRT_CONFIG_REPO]
repository_ctx.template("BUILD", Label(remote_config_repo + "/BUILD"), {})
repository_ctx.template("BUILD", Label(remote_config_repo + ":BUILD"), {})
# Set up config file.
_tpl(repository_ctx, "build_defs.bzl", {"%{if_tensorrt}": "if_true"})
return
Expand Down

0 comments on commit 4e8bf7f

Please sign in to comment.