aboutsummaryrefslogtreecommitdiff
path: root/src/etc/snapshot.py
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-05-12 12:56:15 -0700
committerGraydon Hoare <[email protected]>2011-05-12 13:08:57 -0700
commit1fdddede227031b4ea1df98da7eb3e2fcc8c7d87 (patch)
treec00f88cee7bc1424ad5e9245a9a1e93a8cabe0f0 /src/etc/snapshot.py
parentRegister new snapshots for incompatible-syntax transition. (diff)
downloadrust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.tar.xz
rust-1fdddede227031b4ea1df98da7eb3e2fcc8c7d87.zip
Add snap-stageN targets.
Diffstat (limited to 'src/etc/snapshot.py')
-rw-r--r--src/etc/snapshot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/snapshot.py b/src/etc/snapshot.py
index 8eaa3791..35bbc3ef 100644
--- a/src/etc/snapshot.py
+++ b/src/etc/snapshot.py
@@ -102,7 +102,7 @@ def hash_file(x):
return scrub(h.hexdigest())
-def make_snapshot():
+def make_snapshot(stage):
kernel = get_kernel()
platform = get_platform()
rev = local_rev_short_sha()
@@ -112,7 +112,7 @@ def make_snapshot():
tar = tarfile.open(file0, "w:bz2")
for name in snapshot_files[kernel]:
- tar.add(os.path.join("stage2", name),
+ tar.add(os.path.join(stage, name),
"rust-stage0/" + name)
tar.close()