summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_utils.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-11-30 12:01:07 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-11-30 13:08:04 +0100
commitf430dd3cb8eb904a0b9a0dd0b786d913da16a155 (patch)
treef76efa0569df5184824768b0c49b0d91f1040244 /buildtools/wafsamba/samba_utils.py
parente0e4dc1c2282253cfaac5bae39b75361d13c843e (diff)
downloadsamba-f430dd3cb8eb904a0b9a0dd0b786d913da16a155.tar.gz
samba-f430dd3cb8eb904a0b9a0dd0b786d913da16a155.tar.bz2
samba-f430dd3cb8eb904a0b9a0dd0b786d913da16a155.zip
wafsamba: Fix indentation.
Without this change we'd exclude the rpath for private libraries whenever the first dependency of a subsystem was a public library. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Tue Nov 30 13:08:04 CET 2010 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba/samba_utils.py')
-rw-r--r--buildtools/wafsamba/samba_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py
index 1e360f0856..5811cb3240 100644
--- a/buildtools/wafsamba/samba_utils.py
+++ b/buildtools/wafsamba/samba_utils.py
@@ -69,7 +69,7 @@ def needs_private_lib(bld, target):
t = bld.name_to_obj(lib, bld.env)
if t and getattr(t, 'private_library', False):
return True
- return False
+ return False
def install_rpath(target):