Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: third_party/instrumented_libraries/fix_rpaths.sh

Issue 60733027: Rewrited build script for instrumented libraries from bash to python (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 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 # Changes all RPATHs in a given directory from XORIGIN to $ORIGIN 6 # Changes all RPATHs in a given directory from XORIGIN to $ORIGIN
7 # See the comment about XORIGIN in download_build_install.sh 7 # See the comment about XORIGIN in download_build_install.py
8 8
9 # Fixes rpath from XORIGIN to $ORIGIN in a single file $1. 9 # Fixes rpath from XORIGIN to $ORIGIN in a single file $1.
10 function fix_rpath { 10 function fix_rpath {
11 chrpath -r $(chrpath $1 | cut -d " " -f 2 | sed s/XORIGIN/\$ORIGIN/g \ 11 chrpath -r $(chrpath $1 | cut -d " " -f 2 | sed s/XORIGIN/\$ORIGIN/g \
12 | sed s/RPATH=//g) $1 > /dev/null 12 | sed s/RPATH=//g) $1 > /dev/null
13 } 13 }
14 14
15 for i in $(find $1 | grep "\.so$"); do 15 for i in $(find $1 | grep "\.so$"); do
16 fix_rpath $i 16 fix_rpath $i
17 done 17 done
18 18
19 # Mark that rpaths are fixed. 19 # Mark that rpaths are fixed.
20 # This file is used by GYP as 'output' to mark that RPATHs are already fixed 20 # This file is used by GYP as 'output' to mark that RPATHs are already fixed
21 # for incremental builds. 21 # for incremental builds.
22 touch $1/rpaths.fixed.txt 22 touch $1/rpaths.fixed.txt
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698