From 518267d34f178ee3c5409d67e71d040c49f47f16 Mon Sep 17 00:00:00 2001 From: Sam Liu Date: Thu, 5 Jul 2018 15:15:17 -0700 Subject: [PATCH] Remove installation guide's recommendation to use Bazel's bind(). --- INSTALL.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index d37528f..76d7edd 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -78,11 +78,6 @@ your WORKSPACE file: remote = "https://github.com/gflags/gflags.git", ) - bind( - name = "gflags", - actual = "@com_github_gflags_gflags//:gflags", - ) - -You can then add `//external:gflags` to the `deps` section of a `cc_binary` or -`cc_library` rule, and `#include ` to include it in your source -code. +You can then add `@com_github_gflags_gflags//:gflags` to the `deps` section of a +`cc_binary` or `cc_library` rule, and `#include ` to include it +in your source code.