summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_utils.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-08 21:46:20 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-08 22:11:49 +1000
commit4ca46c6b8dfd9d7450096fc16c6edd7a08f369e5 (patch)
tree8d32526234eecdb5187869ba4c0b6093047d5442 /buildtools/wafsamba/samba_utils.py
parenteb9b7d0363669574de8ec380089407890f15eac2 (diff)
downloadsamba-4ca46c6b8dfd9d7450096fc16c6edd7a08f369e5.tar.gz
samba-4ca46c6b8dfd9d7450096fc16c6edd7a08f369e5.tar.bz2
samba-4ca46c6b8dfd9d7450096fc16c6edd7a08f369e5.zip
build: make the handling of relative paths a bit saner
This should fix a problem that Anatoliy has struck with the PIDL rules. It also brings us much closer to a working build for a true out of tree build (ie. with waf configure -b /tmp/build)
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 a527e811fa..1df70fdbf5 100644
--- a/buildtools/wafsamba/samba_utils.py
+++ b/buildtools/wafsamba/samba_utils.py
@@ -72,7 +72,7 @@ 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))
+ rpath = os.path.normpath('%s/%s' % (bld.env.BUILD_DIRECTORY, LIB_PATH))
bld.env['RPATH'] = []
bld.env['RPATH_ST'] = []
if bld.env.RPATH_ON_BUILD: