1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

samba_utils: Use LIBDIR rather than assuming it is set to $prefix/lib.

This commit is contained in:
Jelmer Vernooij 2010-11-04 23:02:50 +01:00
parent 228a9c10d0
commit 0d4fa8514b

View File

@ -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 []