OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 # Changes all RPATHs in a given directory from XORIGIN to $ORIGIN |
| 7 |
| 8 # Fixes rpath from XORIGIN to $ORIGIN in a single file $1. |
| 9 function fix_rpath { |
| 10 chrpath -r $(chrpath $1 | cut -d " " -f 2 | sed s/XORIGIN/\$ORIGIN/g \ |
| 11 | sed s/RPATH=//g) $1 |
| 12 } |
| 13 |
| 14 for i in $(find $1 | grep "\.so$"); do |
| 15 fix_rpath $i > /dev/null |
| 16 done |
| 17 |
| 18 # Mark that rpaths are fixed. |
| 19 # This file is used by GYP as 'output' to mark that RPATHs are alreaty fixed |
| 20 # while making incremental build. |
| 21 touch $1/rpaths.fixed.txt |
OLD | NEW |