From 9031281672206803c4344a68a7f1c2f3b230fa56 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Wed, 6 Jun 2018 12:01:44 -0700 Subject: CMake: Get rid of FULL_SO_VERSION gd2e0724afc moved our library versions into their own variables named FULL_SO_VERSION. They're no longer used and interfere with tools/release-update-debian-soversions.sh so remove them. Fix some shellcheck warnings in release-update-debian-soversions.sh while we're here. Bug: 14778 Change-Id: I0eb0bb4ab4c482bdb8a94f8c18aa04c6c83c781b Reviewed-on: https://code.wireshark.org/review/28068 Reviewed-by: Gerald Combs Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- wiretap/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'wiretap/CMakeLists.txt') diff --git a/wiretap/CMakeLists.txt b/wiretap/CMakeLists.txt index 3bfc5870b1..b0aebf04e8 100644 --- a/wiretap/CMakeLists.txt +++ b/wiretap/CMakeLists.txt @@ -117,13 +117,11 @@ add_library(wiretap add_dependencies(wiretap version) -set(FULL_SO_VERSION "0.0.0") - set_target_properties(wiretap PROPERTIES PREFIX "lib" COMPILE_DEFINITIONS "WS_BUILD_DLL" LINK_FLAGS "${WS_LINK_FLAGS}" - VERSION ${FULL_SO_VERSION} SOVERSION 0 + VERSION "0.0.0" SOVERSION 0 FOLDER "DLLs" ) -- cgit v1.2.3