From 20a904017c374fe58d67028453648e96cc7afb93 Mon Sep 17 00:00:00 2001 From: Terry Heo Date: Tue, 3 Mar 2020 04:49:10 -0800 Subject: [PATCH] Fix broken Makefile build Filter out random package from absl library. PiperOrigin-RevId: 298577985 Change-Id: I4435146c326d2439f1bfdac762d99c9817fe8f18 --- tensorflow/lite/tools/make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/tools/make/Makefile b/tensorflow/lite/tools/make/Makefile index b78fb14b785..1136d62155a 100644 --- a/tensorflow/lite/tools/make/Makefile +++ b/tensorflow/lite/tools/make/Makefile @@ -132,7 +132,7 @@ tensorflow/lite/tools/make/downloads/fft2d/fftsg2d.c \ tensorflow/lite/tools/make/downloads/flatbuffers/src/util.cpp CORE_CC_ALL_SRCS += \ $(shell find tensorflow/lite/tools/make/downloads/absl/absl/ \ - -type f -name \*.cc | grep -v test | grep -v benchmark | grep -v synchronization | grep -v debugging | grep -v hash | grep -v flags) + -type f -name \*.cc | grep -v test | grep -v benchmark | grep -v synchronization | grep -v debugging | grep -v hash | grep -v flags | grep -v random) endif # Remove any duplicates. CORE_CC_ALL_SRCS := $(sort $(CORE_CC_ALL_SRCS))