| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 # Run this script in the nss/lib/ssl directory in a NSS source tree. | 6 # Run this script in the nss/lib/ssl directory in a NSS source tree. |
| 7 # | 7 # |
| 8 # Point patches_dir to the src/net/third_party/nss/patches directory in a | 8 # Point patches_dir to the src/net/third_party/nss/patches directory in a |
| 9 # chromium source tree. | 9 # chromium source tree. |
| 10 patches_dir=/Users/sleevi/development/chromium/src/net/third_party/nss/patches | 10 patches_dir=/Users/sleevi/development/chromium/src/net/third_party/nss/patches |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 patch -p2 < $patches_dir/sessioncache.patch | 44 patch -p2 < $patches_dir/sessioncache.patch |
| 45 | 45 |
| 46 patch -p2 < $patches_dir/nssrwlock.patch | 46 patch -p2 < $patches_dir/nssrwlock.patch |
| 47 | 47 |
| 48 patch -p2 < $patches_dir/reorderextensions.patch | 48 patch -p2 < $patches_dir/reorderextensions.patch |
| 49 | 49 |
| 50 patch -p2 < $patches_dir/removebuildmetadata.patch | 50 patch -p2 < $patches_dir/removebuildmetadata.patch |
| 51 | 51 |
| 52 patch -p2 < $patches_dir/norenegotiatelock.patch | 52 patch -p2 < $patches_dir/norenegotiatelock.patch |
| 53 |
| 54 patch -p2 < $patches_dir/dh1024.patch |
| OLD | NEW |