From 204b72c98cae6b1edc79e48646f0c13ab3c12057 Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 30 Apr 2019 17:42:46 -0700 Subject: [PATCH] make vpx_debug_util.c inclusion conditional on CONFIG_BITSTREAM_DEBUG. this avoids an object file containing no symbols which may cause warnings on some platforms. Change-Id: I02af97d6970de949466c29f50d272733d97ee8d2 --- vpx_util/vpx_util.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpx_util/vpx_util.mk b/vpx_util/vpx_util.mk index 03da63b5a..e83a4c4ec 100644 --- a/vpx_util/vpx_util.mk +++ b/vpx_util/vpx_util.mk @@ -15,5 +15,5 @@ UTIL_SRCS-yes += vpx_thread.h UTIL_SRCS-yes += endian_inl.h UTIL_SRCS-yes += vpx_write_yuv_frame.h UTIL_SRCS-yes += vpx_write_yuv_frame.c -UTIL_SRCS-yes += vpx_debug_util.h -UTIL_SRCS-yes += vpx_debug_util.c +UTIL_SRCS-$(CONFIG_BITSTREAM_DEBUG) += vpx_debug_util.h +UTIL_SRCS-$(CONFIG_BITSTREAM_DEBUG) += vpx_debug_util.c -- 2.50.1