From 2efe776ab082723fe94e91ae7d45e65480bb3faa Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 10 Feb 2015 15:48:48 +0000 Subject: 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 SVN-Revision: 44377 --- scripts/rstrip.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'scripts/rstrip.sh') 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 -- cgit v1.2.3