From 556ff27e2e7ee34f1864da26ff6623a5e30580f7 Mon Sep 17 00:00:00 2001 From: Tom Finegan Date: Thu, 14 May 2015 11:20:34 -0700 Subject: [PATCH] Remove BUILD_LIBVPX_SO variable from the build system. Was just an additional layer of indirection for CONFIG_SHARED, so use CONFIG_SHARED directly. Change-Id: I7c022b9f926a63c2c5884def5f03dfd648329afc --- libs.mk | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/libs.mk b/libs.mk index e8fd3e1..0a5d9ac 100644 --- a/libs.mk +++ b/libs.mk @@ -223,9 +223,6 @@ OBJS-yes += $(LIBVPX_OBJS) LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS) - -BUILD_LIBVPX_SO := $(if yes,$(CONFIG_SHARED)) - SO_VERSION_MAJOR := 2 SO_VERSION_MINOR := 0 SO_VERSION_PATCH := 0 @@ -242,7 +239,7 @@ LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \ libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR)) endif -LIBS-$(BUILD_LIBVPX_SO) += $(BUILD_PFX)$(LIBVPX_SO)\ +LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\ $(notdir $(LIBVPX_SO_SYMLINKS)) $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE) $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm @@ -276,8 +273,8 @@ $(eval $(call libvpx_symlink_template,\ $(LIBVPX_SO))) -INSTALL-LIBS-$(BUILD_LIBVPX_SO) += $(LIBVPX_SO_SYMLINKS) -INSTALL-LIBS-$(BUILD_LIBVPX_SO) += $(LIBSUBDIR)/$(LIBVPX_SO) +INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS) +INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO) LIBS-yes += vpx.pc -- 2.7.4