aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-02-10 15:48:48 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-02-10 15:48:48 +0000
commit6da5c89178cbb5e3a131e5145b13bee021b1f773 (patch)
tree54905c26d2978f491f40221b410112c720978313 /scripts
parentfc7067b6aea353eab05fb59d1812b3308d529dca (diff)
downloadmaster-187ad058-6da5c89178cbb5e3a131e5145b13bee021b1f773.tar.gz
master-187ad058-6da5c89178cbb5e3a131e5145b13bee021b1f773.tar.bz2
master-187ad058-6da5c89178cbb5e3a131e5145b13bee021b1f773.zip
scripts: extend rstrip.sh to remove bad rpaths
Remove all rpath entries which do not point to a location below /lib or /usr/lib and which do not begin with '$ORIGIN'. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44377 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/rstrip.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/rstrip.sh b/scripts/rstrip.sh
index 4665ff5559..4e4232db60 100755
--- a/scripts/rstrip.sh
+++ b/scripts/rstrip.sh
@@ -25,11 +25,21 @@ find $TARGETS -type f -a -exec file {} \; | \
(
IFS=":"
while read F S; do
- echo "$SELF: $F:$S"
+ echo "$SELF: $F: $S"
[ "${S}" = "relocatable" ] && {
eval "$STRIP_KMOD $F"
} || {
b=$(stat -c '%a' $F)
+ [ -z "$PATCHELF" ] || [ -z "$TOPDIR" ] || {
+ old_rpath="$($PATCHELF --print-rpath $F)"; new_rpath=""
+ for path in $old_rpath; do
+ case "$path" in
+ /lib/[^/]*|/usr/lib/[^/]*|\$ORIGIN/*) new_rpath="${new_rpath:+$new_rpath:}$path" ;;
+ *) echo "$SELF: $F: removing rpath $path" ;;
+ esac
+ done
+ [ "$new_rpath" = "$old_rpath" ] || $PATCHELF --set-rpath "$new_rpath" $F
+ }
eval "$STRIP $F"
a=$(stat -c '%a' $F)
[ "$a" = "$b" ] || chmod $b $F