From c9756cac057444ff7c3a77b9260fa30c35267529 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 5 Nov 2010 02:30:01 +0100 Subject: waf: Put private libraries in a separate directory when building. Thanks to Tridge for pointing out what exactly I had to change. :-) --- buildtools/wafsamba/samba_utils.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'buildtools/wafsamba/samba_utils.py') diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index b9c8eca1bb..7006381ae6 100644 --- a/buildtools/wafsamba/samba_utils.py +++ b/buildtools/wafsamba/samba_utils.py @@ -76,11 +76,12 @@ def install_rpath(bld): def build_rpath(bld): '''the rpath value for build''' - rpath = os.path.normpath('%s/%s' % (bld.env.BUILD_DIRECTORY, LIB_PATH)) + rpaths = [os.path.normpath('%s/%s' % (bld.env.BUILD_DIRECTORY, d)) for d in ("shared", "shared/private")] bld.env['RPATH'] = [] if bld.env.RPATH_ON_BUILD: - return [rpath] - ADD_LD_LIBRARY_PATH(rpath) + return rpaths + for rpath in rpaths: + ADD_LD_LIBRARY_PATH(rpath) return [] -- cgit