From e3a7a080b453529c296528b4343c1d0f8ba390bc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 8 Dec 2010 12:40:19 +0100 Subject: [PATCH] buildtools: private_libraries should not have a version in the soname metze --- buildtools/wafsamba/wafsamba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index bf03973f88a..e7a23fb169a 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -195,7 +195,7 @@ def SAMBA_LIBRARY(bld, libname, source, if vnum: Logs.error("vnum is invalid for private libraries") sys.exit(1) - vnum = Utils.g_module.VERSION.split(".")[0] + vnum = None version = "%s_%s" % (Utils.g_module.APPNAME, Utils.g_module.VERSION) else: version = "%s_%s" % (Utils.g_module.APPNAME, Utils.g_module.VERSION.split(".")[0]) -- 2.11.4.GIT