diff options
author | Damjan Marion <damarion@cisco.com> | 2016-12-19 19:08:11 +0100 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-12-20 13:43:21 +0000 |
commit | a1bd0230d2412223141486192ee0d4632bfe8710 (patch) | |
tree | 8e9180b9339f1362881c48e53a77229a8fa068bc /build-root/scripts/remove-rpath | |
parent | fcfb3917f7021567b250dabbcc9e30a1becf6f73 (diff) |
Remove RPATH from binaries before creating .deb and .rpm packages
Change-Id: I684d4eabac03e049524204864c985e14eea8d92e
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build-root/scripts/remove-rpath')
-rwxr-xr-x | build-root/scripts/remove-rpath | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build-root/scripts/remove-rpath b/build-root/scripts/remove-rpath new file mode 100755 index 00000000000..bda3d60d745 --- /dev/null +++ b/build-root/scripts/remove-rpath @@ -0,0 +1,24 @@ +#!/bin/bash + +if [ -z $1 ]; then + echo "Please specify path" + exit 1 +fi + +which chrpath &> /dev/null + +if [ $? -ne 0 ] ; then + echo "Please install chrpath tool" + exit 1 +fi + +libs=$(find $1 -type f -name \*.so) +execs=$(find $1 -type f -path \*/bin/\* ) + +for i in $libs $execs; do + chrpath $i 2> /dev/null | grep -q build-root + if [ $? -eq 0 ] ; then + chrpath $i + fi +done + |