summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_utils.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-11-04 23:02:50 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-11-05 02:06:05 +0000
commit0d4fa8514b4825c9b3d2383a9e12197b69b2e80f (patch)
treefccf6ff0a8a42b3945ef112de0ec48fdfead20f0 /buildtools/wafsamba/samba_utils.py
parent228a9c10d048add9630c8868bcc0939ba26f4d51 (diff)
downloadsamba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.tar.gz
samba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.tar.bz2
samba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.zip
samba_utils: Use LIBDIR rather than assuming it is set to $prefix/lib.
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 a25393b89d..2a06449a1a 100644
--- a/buildtools/wafsamba/samba_utils.py
+++ b/buildtools/wafsamba/samba_utils.py
@@ -67,7 +67,7 @@ def install_rpath(bld):
'''the rpath value for installation'''
bld.env['RPATH'] = []
if bld.env.RPATH_ON_INSTALL:
- return ['%s/lib' % bld.env.PREFIX]
+ return [bld.env.LIBDIR]
return []