summaryrefslogtreecommitdiff
path: root/autodeps/linux.prov
diff options
context:
space:
mode:
Diffstat (limited to 'autodeps/linux.prov')
-rw-r--r--autodeps/linux.prov2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodeps/linux.prov b/autodeps/linux.prov
index aaede68fb..fd2f98748 100644
--- a/autodeps/linux.prov
+++ b/autodeps/linux.prov
@@ -9,7 +9,7 @@ for f in $filelist; do
soname=$(objdump -p $f | awk '/SONAME/ {print $2}')
if [ "$soname" != "" ]; then
- if [ "$soname" != "_end" ]; then
+ if [ ! -L $f ]; then
echo $soname
fi
else