tdb:build: improve detection of srcdir.
authorMichael Adam <obnox@samba.org>
Fri, 20 Jun 2014 16:03:31 +0000 (18:03 +0200)
committerMichael Adam <obnox@samba.org>
Fri, 20 Jun 2014 21:38:10 +0000 (23:38 +0200)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
lib/tdb/wscript

index 885548d7262dec0175b690567058b461a6d3bb62..688eef273ad11612b7962f46df6c6f84e92ee4cc 100644 (file)
@@ -10,7 +10,7 @@ import sys, os
 # find the buildtools directory
 srcdir = '.'
 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
-    srcdir = '../' + srcdir
+    srcdir = srcdir + '/..'
 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
 
 import wafsamba, samba_dist, Options, Logs