OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # This shell script checks out the NSPR source tree from CVS and prepares | 6 # This shell script checks out the NSPR source tree from CVS and prepares |
7 # it for Chromium. | 7 # it for Chromium. |
8 | 8 |
9 # Make the script exit as soon as something fails. | 9 # Make the script exit as soon as something fails. |
10 set -ex | 10 set -ex |
11 | 11 |
12 rm -rf mozilla/nsprpub | 12 rm -rf mozilla/nsprpub |
13 cvs -q -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot export \ | 13 cvs -q -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot export \ |
14 -r NSPR_4_8_4_BETA1 NSPR | 14 -r NSPR_4_8_4_RTM NSPR |
15 | 15 |
16 rm -r mozilla/nsprpub/admin | 16 rm -r mozilla/nsprpub/admin |
17 rm -r mozilla/nsprpub/build | 17 rm -r mozilla/nsprpub/build |
18 rm -r mozilla/nsprpub/config | 18 rm -r mozilla/nsprpub/config |
19 rm -r mozilla/nsprpub/lib/msgc | 19 rm -r mozilla/nsprpub/lib/msgc |
20 rm -r mozilla/nsprpub/lib/prstreams | 20 rm -r mozilla/nsprpub/lib/prstreams |
21 rm -r mozilla/nsprpub/lib/tests | 21 rm -r mozilla/nsprpub/lib/tests |
22 rm -r mozilla/nsprpub/pkg | 22 rm -r mozilla/nsprpub/pkg |
23 rm -r mozilla/nsprpub/pr/src/cplus | 23 rm -r mozilla/nsprpub/pr/src/cplus |
24 rm -r mozilla/nsprpub/pr/tests | 24 rm -r mozilla/nsprpub/pr/tests |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 rm mozilla/nsprpub/pr/src/md/windows/ntio.c | 61 rm mozilla/nsprpub/pr/src/md/windows/ntio.c |
62 rm mozilla/nsprpub/pr/src/md/windows/ntthread.c | 62 rm mozilla/nsprpub/pr/src/md/windows/ntthread.c |
63 | 63 |
64 # Remove obsolete files or files we don't need. | 64 # Remove obsolete files or files we don't need. |
65 rm mozilla/nsprpub/pr/include/gencfg.c | 65 rm mozilla/nsprpub/pr/include/gencfg.c |
66 rm mozilla/nsprpub/pr/src/memory/prgcleak.c | 66 rm mozilla/nsprpub/pr/src/memory/prgcleak.c |
67 rm mozilla/nsprpub/pr/src/misc/compile-et.pl | 67 rm mozilla/nsprpub/pr/src/misc/compile-et.pl |
68 rm mozilla/nsprpub/pr/src/misc/dtoa.c | 68 rm mozilla/nsprpub/pr/src/misc/dtoa.c |
69 rm mozilla/nsprpub/pr/src/misc/prerr.et | 69 rm mozilla/nsprpub/pr/src/misc/prerr.et |
70 rm mozilla/nsprpub/pr/src/misc/prerr.properties | 70 rm mozilla/nsprpub/pr/src/misc/prerr.properties |
OLD | NEW |