diff options
author | Anatoly Techtonik <techtonik@gmail.com> | 2010-07-06 19:25:37 (GMT) |
---|---|---|
committer | Anatoly Techtonik <techtonik@gmail.com> | 2010-07-06 19:25:37 (GMT) |
commit | c8dee393d130342f5035f061ec3760f8cb071dac (patch) | |
tree | d98177b1e4c893e43a5fb7f97485904246567b85 /bootstrap.py | |
parent | 6db0c3e47b82bb0b612537f688fa882d6530b7ef (diff) | |
download | SCons-c8dee393d130342f5035f061ec3760f8cb071dac.zip SCons-c8dee393d130342f5035f061ec3760f8cb071dac.tar.gz SCons-c8dee393d130342f5035f061ec3760f8cb071dac.tar.bz2 |
Aegis cleanup - remove references from bootstrap.py (issue #2639)
Diffstat (limited to 'bootstrap.py')
-rw-r--r-- | bootstrap.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/bootstrap.py b/bootstrap.py index 3f76138..2656f4f 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -69,12 +69,6 @@ the following SCons options: the SCons script itself doesn't need to, so this option gets "eaten" by the bootstrap.py script. - -Y, --repository - - These options are used under Aegis to specify a search path - for the source files that may not have been copied in to the - Aegis change. - This is essentially a minimal build of SCons to bootstrap ourselves into executing it for the full build of all the packages, as specified in our local SConstruct file. @@ -142,22 +136,6 @@ while command_line_args: elif arg[:12] == '--directory=': os.chdir(arg[12:]) - elif arg in ('-Y', '--repository'): - try: - dir = command_line_args.pop(0) - except IndexError: - sys.stderr.write(requires_an_argument % arg) - sys.exit(1) - else: - search.append(dir) - pass_through_args.extend([arg, dir]) - elif arg[:2] == '-Y': - search.append(arg[2:]) - pass_through_args.append(arg) - elif arg[:13] == '--repository=': - search.append(arg[13:]) - pass_through_args.append(arg) - else: pass_through_args.append(arg) |