vpp/build-root/scripts/remove-rpath
Damjan Marion 3f1309df1b Fix remove-rpath script
Change-Id: Ieb9ca2c5ac64dbb73de1b3dd701bb794c91aeae5
Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-13 21:02:31 +00:00

25 lines
372 B
Bash
Executable File

#!/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 -d $i
fi
done