From 4f1f244a1389dabcce34c961bb5432bd196b5b81 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 2 Nov 2020 14:05:23 -0800 Subject: [PATCH] build: exclude wee8/out from inputs (#13866) If you build without sandboxing for performance, the output files from this custom build genrule contained timestamps which caused it to rebuild every single build. Signed-off-by: Keith Smiley --- bazel/external/wee8.BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bazel/external/wee8.BUILD b/bazel/external/wee8.BUILD index ce16c32af799..0ea13769ccd4 100644 --- a/bazel/external/wee8.BUILD +++ b/bazel/external/wee8.BUILD @@ -29,7 +29,10 @@ cc_library( genrule( name = "build", - srcs = glob(["wee8/**"]), + srcs = glob( + ["wee8/**"], + exclude = ["wee8/out/**"], + ), outs = [ "libwee8.a", ],