blob: bbbf4d63c55f3f6568e0cbc1949ca517c2c77437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/sh -e
rpath=$(../src/patchelf --print-rpath ./libbar.so)
echo "RPATH before: $rpath"
if ! echo "$rpath" | grep -q /no-such-path; then
echo "incomplete RPATH"
exit 1
fi
rm -rf scratch
mkdir -p scratch
cp libbar.so scratch/
../src/patchelf --shrink-rpath scratch/libbar.so
rpath=$(../src/patchelf --print-rpath scratch/libbar.so)
echo "RPATH after: $rpath"
if echo "$rpath" | grep -q /no-such-path; then
echo "RPATH not shrunk"
exit 1
fi
|