summaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-07-21 23:45:46 +0200
committerDirk Baechle <dl9obn@darc.de>2013-07-21 23:45:46 +0200
commita21b22f85c386b62faa48184050c0551b80784ae (patch)
tree12b48199ccf081d239654cc0d5e28c1bc0967d2a /bootstrap.py
parentdabd53ff2c940d1d184963925a52885407dd4a41 (diff)
downloadscons-a21b22f85c386b62faa48184050c0551b80784ae.tar.gz
- additional fix for bootstrap.py, based on the patch provided by H. S. Teoh
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-xbootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 1f80fb28..f3bc1050 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -184,7 +184,7 @@ def main():
MANIFEST_in = find(os.path.join(src_engine, 'MANIFEST.in'))
files = [ scons_py ] + [os.path.join(src_engine, x)
- for x in parseManifestLines(src_engine, open(MANIFEST_in).readlines())]
+ for x in parseManifestLines(os.path.join(script_dir, src_engine), open(MANIFEST_in).readlines())]
for file in files:
src = find(file)