replace:build: improve detection of srcdir
authorMichael Adam <obnox@samba.org>
Fri, 20 Jun 2014 16:08:18 +0000 (18:08 +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/replace/wscript

index 22dd1322a210ecd1913d3ad68dc622ac36f6de6e..a7384e8721cbb821f7b5bc85fe81527e4a6fb121 100644 (file)
@@ -10,7 +10,7 @@ import sys, os, Utils
 # 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