Merge pull request #150 from LuminateWireless/fix-bazel-build

Fix bazel build
diff --git a/BUILD b/BUILD
index d5fc59b..c9dc00d 100644
--- a/BUILD
+++ b/BUILD
@@ -20,6 +20,10 @@
     ],
     hdrs = ["gflags.h"],
     copts = [
+        # The config.h gets generated to the package directory of
+        # GENDIR, and we don't want to put it into the includes
+        # otherwise the dependent may pull it in by accident.
+        "-I$(GENDIR)/" + PACKAGE_NAME,
         "-Wno-sign-compare",
         "-DHAVE_STDINT_H",
         "-DHAVE_SYS_TYPES_H",