5a3a6c09f5
Change-Id: If0fc5adb495b243dc9d7bfb8112ffee79ca1335e Signed-off-by: Damjan Marion <damarion@cisco.com>
25 lines
374 B
Bash
Executable File
25 lines
374 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
|
|
|