summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/wafsamba.py
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-12-08 12:40:19 +0100
committerStefan Metzmacher <metze@samba.org>2010-12-08 16:11:49 +0100
commite3a7a080b453529c296528b4343c1d0f8ba390bc (patch)
treebfafd5d612985b2474e2c096597db5efad5e13f7 /buildtools/wafsamba/wafsamba.py
parentaee086c4d5a5b591814e7e78b3f24420a8ffff48 (diff)
downloadsamba-e3a7a080b453529c296528b4343c1d0f8ba390bc.tar.gz
samba-e3a7a080b453529c296528b4343c1d0f8ba390bc.tar.bz2
samba-e3a7a080b453529c296528b4343c1d0f8ba390bc.zip
buildtools: private_libraries should not have a version in the soname
metze
Diffstat (limited to 'buildtools/wafsamba/wafsamba.py')
-rw-r--r--buildtools/wafsamba/wafsamba.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index bf03973f88..e7a23fb169 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])