From 7b72df724df495af315b57b0bb82d7601b69d3ca Mon Sep 17 00:00:00 2001 From: Luke Yeager Date: Fri, 9 Oct 2015 15:23:56 -0700 Subject: [PATCH] Fix Makefile versioning --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c2c572fd3da..c0382e3c1df 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,8 @@ DYNAMIC_VERSION_MAJOR := 0 DYNAMIC_VERSION_MINOR := 13 DYNAMIC_VERSION_REVISION := 2 DYNAMIC_NAME_SHORT := lib$(LIBRARY_NAME).so -DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR) -DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_SONAME_SHORT).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION) +DYNAMIC_SONAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR) +DYNAMIC_VERSIONED_NAME_SHORT := $(DYNAMIC_NAME_SHORT).$(DYNAMIC_VERSION_MAJOR).$(DYNAMIC_VERSION_MINOR).$(DYNAMIC_VERSION_REVISION) DYNAMIC_NAME := $(LIB_BUILD_DIR)/$(DYNAMIC_VERSIONED_NAME_SHORT) ##############################