diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-12-09 21:58:20 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-12-09 12:47:40 +0100 |
commit | 57f2f1d72a70a80e61a2ed6f1abc63a177a590ab (patch) | |
tree | f034ee148b05cc9f59c9f96128c165d363009a5b /buildtools | |
parent | ca247bee2fbd444dfd1abe94c83472ac8e3c1ad1 (diff) | |
download | samba-57f2f1d72a70a80e61a2ed6f1abc63a177a590ab.tar.gz samba-57f2f1d72a70a80e61a2ed6f1abc63a177a590ab.tar.bz2 samba-57f2f1d72a70a80e61a2ed6f1abc63a177a590ab.zip |
waf: remove the restriction that private libraries must not have a vnum
we need the vnum for ABI checking for public libraries built as
private libraries when bundled
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Thu Dec 9 12:47:41 CET 2010 on sn-devel-104
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 2c6f4b7883..fb68531353 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -191,11 +191,6 @@ def SAMBA_LIBRARY(bld, libname, source, ldflags = TO_LIST(ldflags) - if private_library: - if vnum: - Logs.error("vnum is invalid for private libraries") - sys.exit(1) - features = 'cc cshlib symlink_lib install_lib' if target_type == 'PYTHON': features += ' pyext' |