diff options
author | Rodrigo Queiro <rodrigoq@google.com> | 2017-12-19 15:47:18 +0100 |
---|---|---|
committer | Rodrigo Queiro <rodrigoq@google.com> | 2017-12-19 15:50:12 +0100 |
commit | 2a593235ba0967ae375752ffac2d4e98b440a1df (patch) | |
tree | be0d6113b339534cedd74aa4a3d051c52bb33b15 /bazel | |
parent | fc87161c962f11633a1bc5f278e038b05e8c8ed5 (diff) | |
download | glog-2a593235ba0967ae375752ffac2d4e98b440a1df.tar.gz glog-2a593235ba0967ae375752ffac2d4e98b440a1df.tar.bz2 glog-2a593235ba0967ae375752ffac2d4e98b440a1df.zip |
Update gflags to latest master
This means that gflags no longer leaks config.h, so I had to fix a bug
in glog.bzl where config.h is generated at the wrong path.
I also switched to the best-practice for depending on git repositories,
ie using http_archive with a mirror.
Diffstat (limited to 'bazel')
-rw-r--r-- | bazel/glog.bzl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazel/glog.bzl b/bazel/glog.bzl index e0b633c..dc25ad1 100644 --- a/bazel/glog.bzl +++ b/bazel/glog.bzl @@ -113,7 +113,7 @@ EOF 'src/config.h.cmake.in', ], outs = [ - 'glog_internal/src/config.h', + 'glog_internal/config.h', ], cmd = "awk '{ gsub(/^#cmakedefine/, \"//cmakedefine\"); print; }' $< > $@", ) |