summaryrefslogtreecommitdiff
path: root/lib/tevent/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-04 10:18:39 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:25 +1000
commit9e9e878e8f5f0fba51e3a576f17cf07d0857cff6 (patch)
tree686d5931eb03b3db009f05b1dd5aab1ac367f3fd /lib/tevent/wscript
parent528d7c7cf39fe9d8867d751f0a3c26f413301515 (diff)
downloadsamba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.tar.gz
samba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.tar.bz2
samba-9e9e878e8f5f0fba51e3a576f17cf07d0857cff6.zip
s4-waf: allow standalone tarball build of libraries
Diffstat (limited to 'lib/tevent/wscript')
-rw-r--r--lib/tevent/wscript11
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/tevent/wscript b/lib/tevent/wscript
index 1298eb4588..41ca66ad15 100644
--- a/lib/tevent/wscript
+++ b/lib/tevent/wscript
@@ -3,10 +3,17 @@
APPNAME = 'tevent'
VERSION = '0.9.8'
-srcdir = '../..'
blddir = 'bin'
-import sys
+import sys, os
+
+# find the buildtools directory
+buildtools = 'buildtools ../../buildtools'
+for d in buildtools.split():
+ if os.path.exists(d):
+ srcdir = os.path.dirname(d) or '.'
+ break
+
sys.path.insert(0, srcdir+"/buildtools/wafsamba")
import wafsamba