| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 # Copyright (c) 2008 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2008 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 set -ex | 7 set -ex |
| 8 JS_FILES="runtime.js \ | 8 JS_FILES="runtime.js \ |
| 9 v8natives.js \ | 9 v8natives.js \ |
| 10 array.js \ | 10 array.js \ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 else | 50 else |
| 51 rm "${LIBRARIES_CC}.new" | 51 rm "${LIBRARIES_CC}.new" |
| 52 fi | 52 fi |
| 53 | 53 |
| 54 if ! diff -q "${LIBRARIES_EMPTY_CC}.new" "${LIBRARIES_EMPTY_CC}" >& /dev/null | 54 if ! diff -q "${LIBRARIES_EMPTY_CC}.new" "${LIBRARIES_EMPTY_CC}" >& /dev/null |
| 55 then | 55 then |
| 56 mv "${LIBRARIES_EMPTY_CC}.new" "${LIBRARIES_EMPTY_CC}" | 56 mv "${LIBRARIES_EMPTY_CC}.new" "${LIBRARIES_EMPTY_CC}" |
| 57 else | 57 else |
| 58 rm "${LIBRARIES_EMPTY_CC}.new" | 58 rm "${LIBRARIES_EMPTY_CC}.new" |
| 59 fi | 59 fi |
| OLD | NEW |