From 062c2b1fe6aa08273291c952e8a579b759fda986 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 16 Mar 2010 16:41:14 +1100 Subject: build: allow shared and python staging areas to be referenced in build tree --- buildtools/wafsamba/wafsamba.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'buildtools') diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 5b63c1eef9..a6b9552313 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -27,6 +27,10 @@ def SAMBA_BUILD_ENV(conf): conf.env['BUILD_DIRECTORY'] = conf.blddir mkdir_p(os.path.join(conf.blddir, LIB_PATH)) mkdir_p(os.path.join(conf.blddir, 'python/samba/dcerpc')) + # this allows all of the bin/shared and bin/python targets + # to be expressed in terms of build directory paths + os.symlink('../python', os.path.join(conf.blddir, 'default/python')) + os.symlink('../shared', os.path.join(conf.blddir, 'default/shared')) ################################################################ -- cgit