diff options
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-x | bootstrap.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index d47c966..3bf53ea 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -183,7 +183,7 @@ def main(): else: pass_through_args.append(arg) - scons_py = os.path.join('src', 'script', 'scons.py') + scons_py = os.path.join('scripts', 'scons.py') src_engine = os.path.join('src', 'engine') MANIFEST_in = find(os.path.join(src_engine, 'MANIFEST.in')) manifest_files = [os.path.join(src_engine, x) @@ -220,6 +220,10 @@ def main(): if __name__ == "__main__": + print("Please use") + print("python scripts/scons.py") + print("Instead of python bootstrap.py. Bootstrap.py is obsolete") + sys.exit(-1) main() # Local Variables: |