Fix broken Makefile build

Filter out random package from absl library.

PiperOrigin-RevId: 298577985
Change-Id: I4435146c326d2439f1bfdac762d99c9817fe8f18
This commit is contained in:
Terry Heo 2020-03-03 04:49:10 -08:00 committed by TensorFlower Gardener
parent e3790a6422
commit 20a904017c

View File

@ -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))