aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib/BUILD
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-04-11 08:17:58 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-11 11:23:35 +0000
commit48237a6ddb273911873391c19f7a922c5278ea85 (patch)
treea97bc2951302c1b61768a871d34d451faeb00719 /third_party/zlib/BUILD
parent759bbfedbd8acd1324211d68b69e302478428e32 (diff)
Do not emit compiler warning on zlib.
There are quite a few, and since the code base is quite stable and proven to work and is not out code anyway, there is no harm in ignoring them. -- MOS_MIGRATED_REVID=119507946
Diffstat (limited to 'third_party/zlib/BUILD')
-rw-r--r--third_party/zlib/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/zlib/BUILD b/third_party/zlib/BUILD
index 98751e60f3..64976684ee 100644
--- a/third_party/zlib/BUILD
+++ b/third_party/zlib/BUILD
@@ -4,7 +4,7 @@ cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
- copts = ["-Wno-error"],
+ copts = ["-w"],
includes = ["."],
visibility = ["//visibility:public"],
)