summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_bundled.py
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-12-08 12:02:51 +0100
committerStefan Metzmacher <metze@samba.org>2010-12-08 16:11:48 +0100
commitaee086c4d5a5b591814e7e78b3f24420a8ffff48 (patch)
treee9132723f931719f8d9ebebbb86362d522058ad5 /buildtools/wafsamba/samba_bundled.py
parent3d289fe14db89b4e9fb97d8bcc3aa29aeb03bc67 (diff)
downloadsamba-aee086c4d5a5b591814e7e78b3f24420a8ffff48.tar.gz
samba-aee086c4d5a5b591814e7e78b3f24420a8ffff48.tar.bz2
samba-aee086c4d5a5b591814e7e78b3f24420a8ffff48.zip
buildtools: add the PRIVATE_EXTENSION for private libraries
metze
Diffstat (limited to 'buildtools/wafsamba/samba_bundled.py')
-rw-r--r--buildtools/wafsamba/samba_bundled.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/buildtools/wafsamba/samba_bundled.py b/buildtools/wafsamba/samba_bundled.py
index 4f6590eb3b..324721fe36 100644
--- a/buildtools/wafsamba/samba_bundled.py
+++ b/buildtools/wafsamba/samba_bundled.py
@@ -10,9 +10,6 @@ def PRIVATE_NAME(bld, name, private_extension, private_library):
return name
if name in bld.env.PRIVATE_EXTENSION_EXCEPTION and not private_library:
return name
- if private_library and bld.EXPAND_VARIABLES(bld.env.LIBDIR) != bld.EXPAND_VARIABLES(bld.env.PRIVATELIBDIR):
- # Private libraries already have their own namespace in another way
- return name
extension = getattr(bld.env, 'PRIVATE_EXTENSION', '')
if extension:
return name + '-' + extension