Skip to content

Commit cbe7693

Browse files
committed
Update mkdist-v8 script after merge of isolate branch into trunk.
1 parent 916ae1e commit cbe7693

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

util/scripts/mkdist-v8

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ die() {
55
exit 1
66
}
77

8-
default_tag="v8-snapshot-08092010"
8+
default_tag="v8-snapshot-05042011"
99

1010
if [ $# -eq 0 ]; then
1111
tag="$default_tag"
@@ -20,13 +20,16 @@ if [ -z "$repository" ]; then
2020
die "error: cannot locate v8 git repository. please run git config --global v8.url /path-or-url/to/v8/repo"
2121
fi
2222

23-
excluded_directories="$excluded_directories benchmarks samples test"
23+
excluded_directories="$excluded_directories build benchmarks samples test .svn"
2424

2525

2626
files_to_remove=""
2727
files_to_remove="$files_to_remove .gitignore"
2828
files_to_remove="$files_to_remove SConstruct"
2929
files_to_remove="$files_to_remove src/SConscript"
30+
files_to_remove="$files_to_remove *.svn*"
31+
files_to_remove="$files_to_remove preparser/SConscript"
32+
files_to_remove="$files_to_remove src/d8.gyp"
3033

3134
require_clean_work_tree() {
3235
# test if working tree is dirty
@@ -108,7 +111,7 @@ echo "generating extra sources"
108111
cat >$srcdir/VERSION <<EOT
109112
This is a snapshot of v8 from
110113
111-
http://v8.googlecode.com/svn/branches/experimental/isolates
114+
http://v8.googlecode.com/svn/branches/bleeding_edge
112115
113116
The commit imported was from the
114117

0 commit comments

Comments
 (0)