aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-04-07 08:04:20 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-07 11:51:15 +0000
commit74ff930c5b54a6f1ee7cefaf724e2923a3a968f5 (patch)
treeffa3a3a7138522c3cd347dc6757bd4de63e1d26b /third_party/zlib
parent6c2276a7dd10447128d9ae92d25fdc45579e63fb (diff)
Use the zlib version in third_party instead of whatever is installed.
This was the last dependency of Bazel that is pulled in from the host system, so now (at least as dependencies go) the source tree of Bazel is now self-contained. -- MOS_MIGRATED_REVID=119243670
Diffstat (limited to 'third_party/zlib')
-rw-r--r--third_party/zlib/BUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/zlib/BUILD b/third_party/zlib/BUILD
index 5ac0087345..98751e60f3 100644
--- a/third_party/zlib/BUILD
+++ b/third_party/zlib/BUILD
@@ -4,6 +4,7 @@ cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
+ copts = ["-Wno-error"],
includes = ["."],
visibility = ["//visibility:public"],
)