OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
| 3 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
3 | 6 |
4 /usr/bin/install_name_tool -change \ | 7 /usr/bin/install_name_tool -change \ |
5 @executable_path/../Library/Frameworks/Cg.framework/Cg \ | 8 @executable_path/../Library/Frameworks/Cg.framework/Cg \ |
6 @executable_path/Cg.framework/Cg \ | 9 @executable_path/Cg.framework/Cg \ |
7 "${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}" | 10 "${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}" |
OLD | NEW |