diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-12-08 12:40:19 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-12-08 16:11:49 +0100 |
commit | e3a7a080b453529c296528b4343c1d0f8ba390bc (patch) | |
tree | bfafd5d612985b2474e2c096597db5efad5e13f7 /buildtools | |
parent | aee086c4d5a5b591814e7e78b3f24420a8ffff48 (diff) | |
download | samba-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')
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 2 |
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]) |