From 9095a801186a0da8a59b51e5af4dfaa9e9b8bff7 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 2 Nov 2020 11:47:53 -0800 Subject: [PATCH] build: exclude wee8/out from inputs 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 3a62ecd9ebf4..8da3ef752a06 100644 --- a/bazel/external/wee8.BUILD +++ b/bazel/external/wee8.BUILD @@ -26,7 +26,10 @@ cc_library( genrule( name = "build", - srcs = glob(["wee8/**"]), + srcs = glob( + ["wee8/**"], + exclude = ["wee8/out/**"], + ), outs = [ "libwee8.a", ],