diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-04 23:02:50 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-05 02:06:05 +0000 |
commit | 0d4fa8514b4825c9b3d2383a9e12197b69b2e80f (patch) | |
tree | fccf6ff0a8a42b3945ef112de0ec48fdfead20f0 | |
parent | 228a9c10d048add9630c8868bcc0939ba26f4d51 (diff) | |
download | samba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.tar.gz samba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.tar.xz samba-0d4fa8514b4825c9b3d2383a9e12197b69b2e80f.zip |
samba_utils: Use LIBDIR rather than assuming it is set to $prefix/lib.
-rw-r--r-- | buildtools/wafsamba/samba_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index a25393b89da..2a06449a1a2 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 [] |