From: James Zern Date: Wed, 1 May 2019 00:42:46 +0000 (-0700) Subject: make vpx_debug_util.c inclusion conditional X-Git-Tag: v1.8.1~76^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=204b72c98cae6b1edc79e48646f0c13ab3c12057;p=libvpx 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 --- 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