summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeb Mukherjee <debargha@google.com>2014-04-03 14:06:20 -0700
committerDeb Mukherjee <debargha@google.com>2014-04-03 14:06:20 -0700
commit4298be38bddaec021bccf52117f49f2798817e07 (patch)
tree25fbde05702afcd124550940310bc9636cd29aad
parent1c7aa8bb6d532f67d6184468c06bbf3080a4c6e0 (diff)
downloadlibvpx-4298be38bddaec021bccf52117f49f2798817e07.tar
libvpx-4298be38bddaec021bccf52117f49f2798817e07.tar.gz
libvpx-4298be38bddaec021bccf52117f49f2798817e07.tar.bz2
libvpx-4298be38bddaec021bccf52117f49f2798817e07.zip
Fix build for resize_util
Fix that handles undefined CONFIG_SHARED Change-Id: I585bd03078f9061d010880a294bf0ac423f0981a
-rw-r--r--examples.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples.mk b/examples.mk
index 87be5a8c9..fa5d66cda 100644
--- a/examples.mk
+++ b/examples.mk
@@ -70,7 +70,7 @@ vp9_spatial_scalable_encoder.SRCS += vpxstats.c vpxstats.h
vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
vp9_spatial_scalable_encoder.DESCRIPTION = Spatial Scalable Encoder
-ifeq ($(CONFIG_SHARED),no)
+ifneq ($(CONFIG_SHARED),yes)
EXAMPLES-$(CONFIG_VP9_ENCODER) += resize_util.c
endif