aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/zlib/BUILD')
-rw-r--r--third_party/zlib/BUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/zlib/BUILD b/third_party/zlib/BUILD
index b5c4596fab..534873fec8 100644
--- a/third_party/zlib/BUILD
+++ b/third_party/zlib/BUILD
@@ -16,7 +16,8 @@ cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
- copts = ["-w"],
+ # Use -Dverbose=-1 to turn off zlib's trace logging. (#3280)
+ copts = ["-w", "-Dverbose=-1"],
includes = ["."],
visibility = ["//visibility:public"],
)