From: Tom Finegan Date: Thu, 14 May 2015 18:20:34 +0000 (-0700) Subject: Remove BUILD_LIBVPX_SO variable from the build system. X-Git-Tag: v1.5.0~681^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=556ff27e2e7ee34f1864da26ff6623a5e30580f7;p=libvpx 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 --- diff --git a/libs.mk b/libs.mk index e8fd3e169..0a5d9ac25 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