diff options
author | Dirk Baechle <dl9obn@darc.de> | 2013-07-21 21:45:46 (GMT) |
---|---|---|
committer | Dirk Baechle <dl9obn@darc.de> | 2013-07-21 21:45:46 (GMT) |
commit | a0ca59da5a6b076f34c1fb5ebe713a1d1ce7d085 (patch) | |
tree | c30de003f51f89ab8962b0b2bfbcf2556be5c118 | |
parent | 412e04144b3ce118f450e250134d66724a68ce04 (diff) | |
download | SCons-a0ca59da5a6b076f34c1fb5ebe713a1d1ce7d085.zip SCons-a0ca59da5a6b076f34c1fb5ebe713a1d1ce7d085.tar.gz SCons-a0ca59da5a6b076f34c1fb5ebe713a1d1ce7d085.tar.bz2 |
- additional fix for bootstrap.py, based on the patch provided by H. S. Teoh
-rwxr-xr-x | bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index 1f80fb2..f3bc105 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) |