summaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
authorAnatoly Techtonik <techtonik@gmail.com>2010-07-06 19:25:37 +0000
committerAnatoly Techtonik <techtonik@gmail.com>2010-07-06 19:25:37 +0000
commit4fd0321457cbf1b56f49d519270cd0fac724815a (patch)
treed98177b1e4c893e43a5fb7f97485904246567b85 /bootstrap.py
parentd2219234fa82a7540654737026fa55e63afa2120 (diff)
downloadscons-4fd0321457cbf1b56f49d519270cd0fac724815a.tar.gz
Aegis cleanup - remove references from bootstrap.py (issue #2639)
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 3f761389..2656f4fa 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)