diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-04 10:18:39 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:25 +1000 |
commit | 9e9e878e8f5f0fba51e3a576f17cf07d0857cff6 (patch) | |
tree | 686d5931eb03b3db009f05b1dd5aab1ac367f3fd /lib/talloc/wscript | |
parent | 528d7c7cf39fe9d8867d751f0a3c26f413301515 (diff) | |
download | samba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.tar.gz samba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.tar.bz2 samba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.zip |
s4-waf: allow standalone tarball build of libraries
Diffstat (limited to 'lib/talloc/wscript')
-rw-r--r-- | lib/talloc/wscript | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index f264513916..a7476b7ec4 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -3,9 +3,17 @@ APPNAME = 'talloc' VERSION = '2.0.2' -srcdir = '../..' blddir = 'bin' +# find the buildtools directory +import os +buildtools = 'buildtools ../../buildtools' +for d in buildtools.split(): + if os.path.exists(d): + srcdir = os.path.dirname(d) or '.' + break + + LIBREPLACE_DIR= srcdir + '/lib/replace' import sys |